forked from elgris/golang-sql-builder-benchmark
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsqlf_benchmark_test.go
185 lines (159 loc) · 3.8 KB
/
sqlf_benchmark_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
package db_sql_benchmark
import (
"testing"
"github.com/leporo/sqlf"
)
var s string
func sqlfSelectSimple(b *testing.B, dialect sqlf.Dialect) {
for n := 0; n < b.N; n++ {
q := dialect.Select("id").
From("tickets").
Where("subdomain_id = ? and (state = ? or state = ?)", 1, "open", "spam")
s = q.String()
q.Close()
}
}
func sqlfSelectConditional(b *testing.B, dialect sqlf.Dialect) {
for n := 0; n < b.N; n++ {
q := dialect.Select("id").
From("tickets").
Where("subdomain_id = ? and (state = ? or state = ?)", 1, "open", "spam")
if n%2 == 0 {
q.GroupBy("subdomain_id").
Having("number = ?", 1).
OrderBy("state").
Limit(7).
Offset(8)
}
s = q.String()
q.Close()
}
}
func sqlfSelectComplex(b *testing.B, dialect sqlf.Dialect) {
for n := 0; n < b.N; n++ {
q := dialect.Select("DITINCT a, b, z, y, x").
// Distinct().
From("c").
Where("d = ? OR e = ?", 1, "wat").
// Where(dbr.Eq{"f": 2, "x": "hi"}).
Where("g = ?", 3).
// Where(dbr.Eq{"h": []int{1, 2, 3}}).
GroupBy("i").
GroupBy("ii").
GroupBy("iii").
Having("j = k").
Having("jj = ?", 1).
Having("jjj = ?", 2).
OrderBy("l").
OrderBy("l").
OrderBy("l").
Limit(7).
Offset(8)
s = q.String()
q.Close()
}
}
func sqlfSelectSubquery(b *testing.B, dialect sqlf.Dialect) {
for n := 0; n < b.N; n++ {
q := dialect.Select("DITINCT a, b").
SubQuery("(", ") AS subq",
sqlf.Select("id").
From("tickets").
Where("subdomain_id = ? and (state = ? or state = ?)", 1, "open", "spam")).
From("c").
// Distinct().
// Where(dbr.Eq{"f": 2, "x": "hi"}).
Where("g = ?", 3).
OrderBy("l").
OrderBy("l").
Limit(7).
Offset(8)
s = q.String()
q.Close()
}
}
func BenchmarkSqlfSelectSimple(b *testing.B) {
sqlfSelectSimple(b, sqlf.NoDialect)
}
func BenchmarkSqlfSelectSimplePostgreSQL(b *testing.B) {
sqlfSelectSimple(b, sqlf.PostgreSQL)
}
func BenchmarkSqlfSelectConditional(b *testing.B) {
sqlfSelectConditional(b, sqlf.NoDialect)
}
func BenchmarkSqlfSelectConditionalPostgreSQL(b *testing.B) {
sqlfSelectConditional(b, sqlf.PostgreSQL)
}
func BenchmarkSqlfSelectComplex(b *testing.B) {
sqlfSelectComplex(b, sqlf.NoDialect)
}
func BenchmarkSqlfSelectComplexPostgreSQL(b *testing.B) {
sqlfSelectComplex(b, sqlf.PostgreSQL)
}
func BenchmarkSqlfSelectSubquery(b *testing.B) {
sqlfSelectSubquery(b, sqlf.NoDialect)
}
func BenchmarkSqlfSelectSubqueryPostgreSQL(b *testing.B) {
sqlfSelectSubquery(b, sqlf.PostgreSQL)
}
//
// Insert benchmark
//
func sqlfInsert(b *testing.B, dialect sqlf.Dialect) {
for n := 0; n < b.N; n++ {
q := dialect.InsertInto("mytable").
Set("id", 1).
Set("a", "test_a").
Set("b", "test_b").
Set("price", 100.05).
Set("created", "2014-01-05").
Set("updated", "2015-01-05")
s = q.String()
q.Close()
}
}
func BenchmarkSqlfInsert(b *testing.B) {
sqlfInsert(b, sqlf.NoDialect)
}
func BenchmarkSqlfInsertPostgreSQL(b *testing.B) {
sqlfInsert(b, sqlf.PostgreSQL)
}
//
// Update benchmark
//
func sqlfUpdateSetColumns(b *testing.B, dialect sqlf.Dialect) {
for n := 0; n < b.N; n++ {
q := dialect.Update("mytable").
Set("foo", 1).
SetExpr("bar", "COALESCE(bar, 0) + 1").
Set("c", 2).
Where("id = ?", 9).
Limit(10)
s = q.String()
q.Close()
}
}
func BenchmarkSqlfUpdateSetColumns(b *testing.B) {
sqlfUpdateSetColumns(b, sqlf.NoDialect)
}
func BenchmarkSqlfUpdateSetColumnsPostgreSQL(b *testing.B) {
sqlfUpdateSetColumns(b, sqlf.PostgreSQL)
}
//
// Delete benchmark
//
func sqlfDelete(b *testing.B, dialect sqlf.Dialect) {
for n := 0; n < b.N; n++ {
q := dialect.DeleteFrom("test_table").
Where("b = ?", 1).
Limit(2)
s = q.String()
q.Close()
}
}
func BenchmarkSqlfDelete(b *testing.B) {
sqlfDelete(b, sqlf.NoDialect)
}
func BenchmarkSqlfDeletePostgreSQL(b *testing.B) {
sqlfDelete(b, sqlf.PostgreSQL)
}