forked from elgris/golang-sql-builder-benchmark
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdbr_benchmark_test.go
150 lines (126 loc) · 3.04 KB
/
dbr_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
package db_sql_benchmark
import (
"fmt"
"testing"
_ "github.com/go-sql-driver/mysql"
"github.com/gocraft/dbr"
dbrDialect "github.com/gocraft/dbr/dialect"
)
//
// Select benchmarks
//
func dbrToSQL(b dbr.Builder) (query string, args []interface{}) {
// As ToSql method seems to be dropped, we use a trimmed version
// of interpolator.encodePlaceholder method dbr calls under the hood.
pbuf := dbr.NewBuffer()
b.Build(dbrDialect.SQLite3, pbuf)
return pbuf.String(), pbuf.Value()
}
func BenchmarkDbrSelectSimple(b *testing.B) {
b.ResetTimer()
for n := 0; n < b.N; n++ {
dbrToSQL(dbr.Select("id").
From("tickets").
Where("subdomain_id = ? and (state = ? or state = ?)", 1, "open", "spam"))
}
}
func BenchmarkDbrSelectConditional(b *testing.B) {
b.ResetTimer()
for n := 0; n < b.N; n++ {
qb := dbr.Select("id").
From("tickets").
Where("subdomain_id = ? and (state = ? or state = ?)", 1, "open", "spam")
if n%2 == 0 {
qb.GroupBy("subdomain_id").
Having("number = ?", 1).
OrderBy("state").
Limit(7).
Offset(8)
}
dbrToSQL(qb)
}
}
func BenchmarkDbrSelectComplex(b *testing.B) {
for n := 0; n < b.N; n++ {
dbrToSQL(dbr.Select("a", "b", "z", "y", "x").
Distinct().
From("c").
Where("d = ? OR e = ?", 1, "wat").
// Where(dbr.Eq{"f": 2, "x": "hi"}).
Where(map[string]interface{}{"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))
}
}
func BenchmarkDbrSelectSubquery(b *testing.B) {
b.ResetTimer()
for n := 0; n < b.N; n++ {
subQuery, _ := dbrToSQL(dbr.Select("id").
From("tickets").
Where("subdomain_id = ? and (state = ? or state = ?)", 1, "open", "spam"))
dbrToSQL(dbr.Select("a", "b", fmt.Sprintf("(%s) AS subq", subQuery)).
From("c").
Distinct().
// Where(dbr.Eq{"f": 2, "x": "hi"}).
Where(map[string]interface{}{"g": 3}).
OrderBy("l").
OrderBy("l").
Limit(7).
Offset(8))
}
}
//
// Insert benchmark
//
func BenchmarkDbrInsert(b *testing.B) {
b.ResetTimer()
for n := 0; n < b.N; n++ {
dbrToSQL(dbr.InsertInto("mytable").
Columns("id", "a", "b", "price", "created", "updated").
Values(1, "test_a", "test_b", 100.05, "2014-01-05", "2015-01-05"))
}
}
//
// Update benchmark
//
func BenchmarkDbrUpdateSetColumns(b *testing.B) {
b.ResetTimer()
for n := 0; n < b.N; n++ {
dbrToSQL(dbr.Update("mytable").
Set("foo", 1).
Set("bar", dbr.Expr("COALESCE(bar, 0) + 1")).
Set("c", 2).
Where("id = ?", 9).
Limit(10))
}
}
func BenchmarkDbrUpdateSetMap(b *testing.B) {
b.ResetTimer()
for n := 0; n < b.N; n++ {
dbrToSQL(dbr.Update("mytable").
SetMap(map[string]interface{}{"b": 1, "c": 2, "bar": dbr.Expr("COALESCE(bar, 0) + 1")}).
Where("id = ?", 9).
Limit(10))
}
}
//
// Delete benchmark
//
func BenchmarkDbrDelete(b *testing.B) {
b.ResetTimer()
for n := 0; n < b.N; n++ {
dbrToSQL(dbr.DeleteFrom("test_table").
Where("b = ?", 1).
Limit(2))
}
}