-
Notifications
You must be signed in to change notification settings - Fork 0
/
select_doc.go
323 lines (284 loc) · 8.56 KB
/
select_doc.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
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
package dat
type subInfo struct {
*Expression
alias string
}
// SelectDocBuilder builds SQL that returns a JSON row.
type SelectDocBuilder struct {
*SelectBuilder
subQueries []*subInfo
subQueriesOne []*subInfo
innerSQL *Expression
isParent bool
}
// NewSelectDocBuilder creates an instance of SelectDocBuilder.
func NewSelectDocBuilder(columns ...string) *SelectDocBuilder {
sb := NewSelectBuilder(columns...)
return &SelectDocBuilder{SelectBuilder: sb, isParent: true}
}
// InnerSQL sets the SQL after the SELECT (columns...) statement
func (b *SelectDocBuilder) InnerSQL(sql string, a ...interface{}) *SelectDocBuilder {
b.innerSQL = Expr(sql, a...)
return b
}
// Many loads a sub query resulting in an array of rows as an alias.
func (b *SelectDocBuilder) Many(column string, sqlOrBuilder interface{}, a ...interface{}) *SelectDocBuilder {
switch t := sqlOrBuilder.(type) {
default:
panic("sqlOrbuilder accepts only {string, Builder, *SelectDocBuilder} type")
case *SelectDocBuilder:
t.isParent = false
sql, args := t.ToSQL()
b.subQueries = append(b.subQueries, &subInfo{Expr(sql, args...), column})
case Builder:
sql, args := t.ToSQL()
b.subQueries = append(b.subQueries, &subInfo{Expr(sql, args...), column})
case string:
b.subQueries = append(b.subQueries, &subInfo{Expr(t, a...), column})
}
return b
}
// One loads a query resulting in a single row as an alias.
func (b *SelectDocBuilder) One(column string, sqlOrBuilder interface{}, a ...interface{}) *SelectDocBuilder {
switch t := sqlOrBuilder.(type) {
default:
panic("sqlOrbuilder accepts only {string, Builder, *SelectDocBuilder} type")
case *SelectDocBuilder:
t.isParent = false
sql, args := t.ToSQL()
b.subQueriesOne = append(b.subQueriesOne, &subInfo{Expr(sql, args...), column})
case Builder:
sql, args := t.ToSQL()
b.subQueriesOne = append(b.subQueriesOne, &subInfo{Expr(sql, args...), column})
case string:
b.subQueriesOne = append(b.subQueriesOne, &subInfo{Expr(t, a...), column})
}
return b
}
// ToSQL serialized the SelectBuilder to a SQL string
// It returns the string with placeholders and a slice of query arguments
func (b *SelectDocBuilder) ToSQL() (string, []interface{}) {
if len(b.columns) == 0 {
panic("no columns specified")
}
if len(b.table) == 0 && b.innerSQL == nil {
panic("no table specified")
}
buf := bufPool.Get()
defer bufPool.Put(buf)
var args []interface{}
var placeholderStartPos int64 = 1
/*
SELECT
row_to_json(item.*)
FROM (
SELECT ID,
NAME,
(
select ARRAY_AGG(dat__1.*)
from (
SELECT ID, user_id, title FROM posts WHERE posts.user_id = people.id
) as dat__1
) as posts
FROM
people
WHERE
ID in (1, 2)
) as item
*/
if b.isParent {
//buf.WriteString("SELECT convert_to(row_to_json(dat__item.*)::text, 'UTF8') FROM ( SELECT ")
buf.WriteString("SELECT row_to_json(dat__item.*) FROM ( SELECT ")
} else {
buf.WriteString("SELECT ")
}
if b.isDistinct {
if len(b.distinctColumns) == 0 {
buf.WriteString("DISTINCT ")
} else {
buf.WriteString("DISTINCT ON (")
for i, s := range b.distinctColumns {
if i > 0 {
buf.WriteString(", ")
}
buf.WriteString(s)
}
buf.WriteString(") ")
}
}
for i, s := range b.columns {
if i > 0 {
buf.WriteString(", ")
}
buf.WriteString(s)
}
/*
(
select ARRAY_AGG(dat__1.*)
from (
SELECT ID, user_id, title FROM posts WHERE posts.user_id = people.id
) as dat__1
) as posts
*/
for _, sub := range b.subQueries {
buf.WriteString(", (SELECT array_agg(dat__")
buf.WriteString(sub.alias)
buf.WriteString(".*) FROM (")
sub.WriteRelativeArgs(buf, &args, &placeholderStartPos)
buf.WriteString(") AS dat__")
buf.WriteString(sub.alias)
buf.WriteString(") AS ")
Dialect.WriteIdentifier(buf, sub.alias)
}
for _, sub := range b.subQueriesOne {
buf.WriteString(", (SELECT row_to_json(dat__")
buf.WriteString(sub.alias)
buf.WriteString(".*) FROM (")
sub.WriteRelativeArgs(buf, &args, &placeholderStartPos)
buf.WriteString(") AS dat__")
buf.WriteString(sub.alias)
buf.WriteString(") AS ")
Dialect.WriteIdentifier(buf, sub.alias)
}
if b.innerSQL != nil {
b.innerSQL.WriteRelativeArgs(buf, &args, &placeholderStartPos)
} else {
buf.WriteString(" FROM ")
buf.WriteString(b.table)
if b.scope != nil {
var where string
sql, args := b.scope.ToSQL(b.table)
sql, where = splitWhere(sql)
buf.WriteString(sql)
if where != "" {
fragment := newWhereFragment(where, args)
b.whereFragments = append(b.whereFragments, fragment)
}
}
if len(b.whereFragments) > 0 {
buf.WriteString(" WHERE ")
writeWhereFragmentsToSql(buf, b.whereFragments, &args, &placeholderStartPos)
}
// if b.scope == nil {
// if len(b.whereFragments) > 0 {
// buf.WriteString(" WHERE ")
// writeWhereFragmentsToSql(buf, b.whereFragments, &args, &placeholderStartPos)
// }
// } else {
// whereFragment := newWhereFragment(b.scope.ToSQL(b.table))
// writeScopeCondition(buf, whereFragment, &args, &placeholderStartPos)
// }
if len(b.groupBys) > 0 {
buf.WriteString(" GROUP BY ")
for i, s := range b.groupBys {
if i > 0 {
buf.WriteString(", ")
}
buf.WriteString(s)
}
}
if len(b.havingFragments) > 0 {
buf.WriteString(" HAVING ")
writeWhereFragmentsToSql(buf, b.havingFragments, &args, &placeholderStartPos)
}
if len(b.orderBys) > 0 {
buf.WriteString(" ORDER BY ")
for i, s := range b.orderBys {
if i > 0 {
buf.WriteString(", ")
}
buf.WriteString(s)
}
}
if b.limitValid {
buf.WriteString(" LIMIT ")
writeUint64(buf, b.limitCount)
}
if b.offsetValid {
buf.WriteString(" OFFSET ")
writeUint64(buf, b.offsetCount)
}
}
if b.isParent {
buf.WriteString(`) as dat__item`)
}
return buf.String(), args
}
//// Copied form SelectBuilder. Need to return an instance of SelectDocBuilder.
// Columns adds additional select columns to the builder.
func (b *SelectDocBuilder) Columns(columns ...string) *SelectDocBuilder {
if len(columns) == 0 || columns[0] == "" {
logger.Error("Select requires 1 or more columns")
return nil
}
b.columns = append(b.columns, columns...)
return b
}
// Distinct marks the statement as a DISTINCT SELECT
func (b *SelectDocBuilder) Distinct() *SelectDocBuilder {
b.isDistinct = true
return b
}
// DistinctOn sets the columns for DISTINCT ON
func (b *SelectDocBuilder) DistinctOn(columns ...string) *SelectDocBuilder {
b.isDistinct = true
b.distinctColumns = columns
return b
}
// From sets the table to SELECT FROM
func (b *SelectDocBuilder) From(from string) *SelectDocBuilder {
b.table = from
return b
}
// ScopeMap uses a predefined scope in place of WHERE.
func (b *SelectDocBuilder) ScopeMap(mapScope *MapScope, m M) *SelectDocBuilder {
b.scope = mapScope.mergeClone(m)
return b
}
// Scope uses a predefined scope in place of WHERE.
func (b *SelectDocBuilder) Scope(sql string, args ...interface{}) *SelectDocBuilder {
b.scope = ScopeFunc(func(table string) (string, []interface{}) {
return escapeScopeTable(sql, table), args
})
return b
}
// Where appends a WHERE clause to the statement for the given string and args
// or map of column/value pairs
func (b *SelectDocBuilder) Where(whereSqlOrMap interface{}, args ...interface{}) *SelectDocBuilder {
b.whereFragments = append(b.whereFragments, newWhereFragment(whereSqlOrMap, args))
return b
}
// GroupBy appends a column to group the statement
func (b *SelectDocBuilder) GroupBy(group string) *SelectDocBuilder {
b.groupBys = append(b.groupBys, group)
return b
}
// Having appends a HAVING clause to the statement
func (b *SelectDocBuilder) Having(whereSqlOrMap interface{}, args ...interface{}) *SelectDocBuilder {
b.havingFragments = append(b.havingFragments, newWhereFragment(whereSqlOrMap, args))
return b
}
// OrderBy appends a column to ORDER the statement by
func (b *SelectDocBuilder) OrderBy(ord string) *SelectDocBuilder {
b.orderBys = append(b.orderBys, ord)
return b
}
// Limit sets a limit for the statement; overrides any existing LIMIT
func (b *SelectDocBuilder) Limit(limit uint64) *SelectDocBuilder {
b.limitCount = limit
b.limitValid = true
return b
}
// Offset sets an offset for the statement; overrides any existing OFFSET
func (b *SelectDocBuilder) Offset(offset uint64) *SelectDocBuilder {
b.offsetCount = offset
b.offsetValid = true
return b
}
// Paginate sets LIMIT/OFFSET for the statement based on the given page/perPage
// Assumes page/perPage are valid. Page and perPage must be >= 1
func (b *SelectDocBuilder) Paginate(page, perPage uint64) *SelectDocBuilder {
b.Limit(perPage)
b.Offset((page - 1) * perPage)
return b
}