-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathwindow.go
More file actions
576 lines (503 loc) · 15.4 KB
/
window.go
File metadata and controls
576 lines (503 loc) · 15.4 KB
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
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
// Copyright 2026 GoSQLX Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// Package parser - window.go
// Window function parsing for the SQL parser.
// Includes OVER clause, PARTITION BY, ORDER BY, and frame specifications.
package parser
import (
"strings"
"github.com/ajitpratap0/GoSQLX/pkg/models"
"github.com/ajitpratap0/GoSQLX/pkg/sql/ast"
"github.com/ajitpratap0/GoSQLX/pkg/sql/keywords"
)
// SUM(salary) OVER (PARTITION BY dept ORDER BY date ROWS UNBOUNDED PRECEDING) -> window function with frame
func (p *Parser) parseFunctionCall(funcName string) (*ast.FunctionCall, error) {
// Expect opening parenthesis
if !p.isType(models.TokenTypeLParen) {
return nil, p.expectedError("(")
}
p.advance() // Consume (
// Parse function arguments
var arguments []ast.Expression
var distinct bool
// Check for DISTINCT keyword
if p.isType(models.TokenTypeDistinct) {
distinct = true
p.advance()
}
// Parse arguments if not empty
if !p.isType(models.TokenTypeRParen) {
for !p.isType(models.TokenTypeOrder) {
// Named argument form: `name => expr` (Snowflake FLATTEN,
// BigQuery, Oracle, PostgreSQL procedural calls). Detect by a
// bare identifier immediately followed by =>.
if p.isIdentifier() &&
p.peekToken().Token.Type == models.TokenTypeRArrow {
namePos := p.currentLocation()
argName := p.currentToken.Token.Value
p.advance() // name
p.advance() // =>
value, err := p.parseExpression()
if err != nil {
return nil, err
}
arguments = append(arguments, &ast.NamedArgument{
Name: argName,
Value: value,
Pos: namePos,
})
if p.isType(models.TokenTypeComma) {
p.advance()
continue
}
if p.isType(models.TokenTypeRParen) {
break
}
return nil, p.expectedError(", or )")
}
arg, err := p.parseExpression()
if err != nil {
return nil, err
}
arguments = append(arguments, arg)
// Check for comma or end of arguments
if p.isType(models.TokenTypeComma) {
p.advance() // Consume comma
} else if p.isType(models.TokenTypeRParen) || p.isType(models.TokenTypeOrder) {
break
} else if strings.ToUpper(p.currentToken.Token.Value) == "SEPARATOR" {
// MySQL GROUP_CONCAT SEPARATOR clause
p.advance() // Consume SEPARATOR
sepArg, err := p.parseExpression()
if err != nil {
return nil, err
}
arguments = append(arguments, sepArg)
break
} else {
return nil, p.expectedError(", or )")
}
}
}
// Parse ORDER BY clause inside aggregate functions (STRING_AGG, ARRAY_AGG, etc.)
// Syntax: STRING_AGG(name, ', ' ORDER BY name ASC)
var orderByExprs []ast.OrderByExpression
if p.isType(models.TokenTypeOrder) {
p.advance() // Consume ORDER
// Expect BY keyword
if !p.isType(models.TokenTypeBy) {
return nil, p.expectedError("BY after ORDER")
}
p.advance() // Consume BY
// Parse order expressions
for {
expr, err := p.parseExpression()
if err != nil {
return nil, err
}
// Create OrderByExpression with defaults
orderByExpr := ast.OrderByExpression{
Expression: expr,
Ascending: true, // Default to ASC
NullsFirst: nil, // Default behavior (database-specific)
}
// Check for ASC/DESC after the expression
if p.isType(models.TokenTypeAsc) {
orderByExpr.Ascending = true
p.advance() // Consume ASC
} else if p.isType(models.TokenTypeDesc) {
orderByExpr.Ascending = false
p.advance() // Consume DESC
}
// Check for NULLS FIRST/LAST
nullsFirst, err := p.parseNullsClause()
if err != nil {
return nil, err
}
orderByExpr.NullsFirst = nullsFirst
orderByExprs = append(orderByExprs, orderByExpr)
// Check for comma (multiple order columns) or end
if p.isType(models.TokenTypeComma) {
p.advance() // Consume comma
} else if p.isType(models.TokenTypeRParen) {
break
} else if strings.EqualFold(p.currentToken.Token.Value, "SEPARATOR") {
break // Let SEPARATOR be handled below
} else {
return nil, p.expectedError(", or )")
}
}
}
// Handle MySQL SEPARATOR clause (GROUP_CONCAT)
if strings.EqualFold(p.currentToken.Token.Value, "SEPARATOR") {
p.advance() // Consume SEPARATOR
sepExpr, err := p.parseExpression()
if err != nil {
return nil, err
}
arguments = append(arguments, sepExpr)
}
// Expect closing parenthesis
if !p.isType(models.TokenTypeRParen) {
return nil, p.expectedError(")")
}
p.advance() // Consume )
// Create function call
funcCall := &ast.FunctionCall{
Name: funcName,
Arguments: arguments,
Distinct: distinct,
OrderBy: orderByExprs,
}
// ClickHouse parametric aggregates: funcName(params)(args).
// e.g. quantileTDigest(0.95)(value), topK(10)(name).
// What we just parsed becomes Parameters; the next paren group is the
// real arguments. Gated to ClickHouse to avoid false positives.
if p.dialect == string(keywords.DialectClickHouse) && p.isType(models.TokenTypeLParen) {
funcCall.Parameters = funcCall.Arguments
funcCall.Arguments = nil
p.advance() // Consume second (
if !p.isType(models.TokenTypeRParen) {
for {
arg, err := p.parseExpression()
if err != nil {
return nil, err
}
funcCall.Arguments = append(funcCall.Arguments, arg)
if p.isType(models.TokenTypeComma) {
p.advance()
} else if p.isType(models.TokenTypeRParen) {
break
} else {
return nil, p.expectedError(", or )")
}
}
}
if !p.isType(models.TokenTypeRParen) {
return nil, p.expectedError(")")
}
p.advance() // Consume second )
}
// Check for IGNORE NULLS / RESPECT NULLS (SQL:2016 null treatment).
// Used by LAG, LEAD, FIRST_VALUE, LAST_VALUE, NTH_VALUE in Snowflake,
// Oracle, BigQuery, etc. IGNORE arrives as TokenTypeKeyword; RESPECT is
// not in any keyword list and arrives as TokenTypeIdentifier. NULLS has
// its own token type.
if p.currentToken.Token.Type == models.TokenTypeKeyword ||
p.currentToken.Token.Type == models.TokenTypeIdentifier {
upper := strings.ToUpper(p.currentToken.Token.Value)
if (upper == "IGNORE" || upper == "RESPECT") &&
p.peekToken().Token.Type == models.TokenTypeNulls {
funcCall.NullTreatment = upper + " NULLS"
p.advance() // IGNORE / RESPECT
p.advance() // NULLS
}
}
// Check for WITHIN GROUP clause (SQL:2003 ordered-set aggregates)
// Syntax: WITHIN GROUP (ORDER BY expression [ASC|DESC] [NULLS FIRST|LAST])
// Used with: PERCENTILE_CONT, PERCENTILE_DISC, MODE, LISTAGG, etc.
if p.isType(models.TokenTypeWithin) {
p.advance() // Consume WITHIN
// Expect GROUP keyword
if !p.isType(models.TokenTypeGroup) {
return nil, p.expectedError("GROUP after WITHIN")
}
p.advance() // Consume GROUP
// Expect opening parenthesis
if !p.isType(models.TokenTypeLParen) {
return nil, p.expectedError("( after WITHIN GROUP")
}
p.advance() // Consume (
// Expect ORDER BY clause
if !p.isType(models.TokenTypeOrder) {
return nil, p.expectedError("ORDER BY in WITHIN GROUP")
}
p.advance() // Consume ORDER
if !p.isType(models.TokenTypeBy) {
return nil, p.expectedError("BY after ORDER")
}
p.advance() // Consume BY
// Parse order expressions
var withinGroupOrderBy []ast.OrderByExpression
for {
expr, err := p.parseExpression()
if err != nil {
return nil, err
}
// Create OrderByExpression with defaults
orderByExpr := ast.OrderByExpression{
Expression: expr,
Ascending: true, // Default to ASC
NullsFirst: nil, // Default behavior (database-specific)
}
// Check for ASC/DESC after the expression
if p.isType(models.TokenTypeAsc) {
orderByExpr.Ascending = true
p.advance() // Consume ASC
} else if p.isType(models.TokenTypeDesc) {
orderByExpr.Ascending = false
p.advance() // Consume DESC
}
// Check for NULLS FIRST/LAST
nullsFirst, err := p.parseNullsClause()
if err != nil {
return nil, err
}
orderByExpr.NullsFirst = nullsFirst
withinGroupOrderBy = append(withinGroupOrderBy, orderByExpr)
// Check for comma (multiple order columns) or end
if p.isType(models.TokenTypeComma) {
p.advance() // Consume comma
} else if p.isType(models.TokenTypeRParen) {
break
} else {
return nil, p.expectedError(", or )")
}
}
// Expect closing parenthesis
if !p.isType(models.TokenTypeRParen) {
return nil, p.expectedError(") after WITHIN GROUP ORDER BY")
}
p.advance() // Consume )
funcCall.WithinGroup = withinGroupOrderBy
}
// Check for FILTER clause (SQL:2003 T612)
// Syntax: FILTER (WHERE condition)
if p.isType(models.TokenTypeFilter) {
p.advance() // Consume FILTER
// Expect opening parenthesis
if !p.isType(models.TokenTypeLParen) {
return nil, p.expectedError("( after FILTER")
}
p.advance() // Consume (
// Expect WHERE keyword
if !p.isType(models.TokenTypeWhere) {
return nil, p.expectedError("WHERE after FILTER (")
}
p.advance() // Consume WHERE
// Parse filter condition expression
filterExpr, err := p.parseExpression()
if err != nil {
return nil, err
}
funcCall.Filter = filterExpr
// Expect closing parenthesis
if !p.isType(models.TokenTypeRParen) {
return nil, p.expectedError(") after FILTER condition")
}
p.advance() // Consume )
}
// Check for OVER clause (window function)
if p.isType(models.TokenTypeOver) {
p.advance() // Consume OVER
windowSpec, err := p.parseWindowSpec()
if err != nil {
return nil, err
}
funcCall.Over = windowSpec
}
return funcCall, nil
}
// parseWindowSpec parses a window specification (PARTITION BY, ORDER BY, frame clause).
// Supports both inline specs OVER (...) and named window references OVER w (SQL:2003 §7.11).
func (p *Parser) parseWindowSpec() (*ast.WindowSpec, error) {
// Named window reference: OVER w - bare identifier, no parentheses.
// This must be checked before the '(' path so that e.g. OVER w is not
// mistakenly rejected.
if p.isIdentifier() {
spec := &ast.WindowSpec{Name: p.currentToken.Token.Value}
p.advance()
return spec, nil
}
// Expect opening parenthesis
if !p.isType(models.TokenTypeLParen) {
return nil, p.expectedError("(")
}
p.advance() // Consume (
windowSpec := &ast.WindowSpec{}
// Parse PARTITION BY clause
if p.isType(models.TokenTypePartition) {
p.advance() // Consume PARTITION
if !p.isType(models.TokenTypeBy) {
return nil, p.expectedError("BY after PARTITION")
}
p.advance() // Consume BY
// Parse partition expressions
for {
expr, err := p.parseExpression()
if err != nil {
return nil, err
}
windowSpec.PartitionBy = append(windowSpec.PartitionBy, expr)
if p.isType(models.TokenTypeComma) {
p.advance() // Consume comma
} else {
break
}
}
}
// Parse ORDER BY clause
if p.isType(models.TokenTypeOrder) {
p.advance() // Consume ORDER
if !p.isType(models.TokenTypeBy) {
return nil, p.expectedError("BY after ORDER")
}
p.advance() // Consume BY
// Parse order expressions
for {
expr, err := p.parseExpression()
if err != nil {
return nil, err
}
// Create OrderByExpression with defaults
orderByExpr := ast.OrderByExpression{
Expression: expr,
Ascending: true, // Default to ASC
NullsFirst: nil, // Default behavior (database-specific)
}
// Check for ASC/DESC after the expression
if p.isType(models.TokenTypeAsc) {
orderByExpr.Ascending = true
p.advance() // Consume ASC
} else if p.isType(models.TokenTypeDesc) {
orderByExpr.Ascending = false
p.advance() // Consume DESC
}
// Check for NULLS FIRST/LAST
nullsFirst, err := p.parseNullsClause()
if err != nil {
return nil, err
}
orderByExpr.NullsFirst = nullsFirst
windowSpec.OrderBy = append(windowSpec.OrderBy, orderByExpr)
if p.isType(models.TokenTypeComma) {
p.advance() // Consume comma
} else {
break
}
}
}
// Parse frame clause (ROWS/RANGE with bounds)
if p.isAnyType(models.TokenTypeRows, models.TokenTypeRange) {
frameType := p.currentToken.Token.Value
p.advance() // Consume ROWS/RANGE
frameClause, err := p.parseWindowFrame(frameType)
if err != nil {
return nil, err
}
windowSpec.FrameClause = frameClause
}
// Expect closing parenthesis
if !p.isType(models.TokenTypeRParen) {
return nil, p.expectedError(")")
}
p.advance() // Consume )
return windowSpec, nil
}
// parseWindowFrame parses a window frame clause
func (p *Parser) parseWindowFrame(frameType string) (*ast.WindowFrame, error) {
frame := &ast.WindowFrame{
Type: frameType,
}
// Parse frame bounds
if p.isType(models.TokenTypeBetween) {
p.advance() // Consume BETWEEN
// Parse start bound
startBound, err := p.parseFrameBound()
if err != nil {
return nil, err
}
frame.Start = *startBound
// Expect AND
if !p.isType(models.TokenTypeAnd) {
return nil, p.expectedError("AND")
}
p.advance() // Consume AND
// Parse end bound
endBound, err := p.parseFrameBound()
if err != nil {
return nil, err
}
frame.End = endBound
} else {
// Single bound (implies CURRENT ROW as end)
startBound, err := p.parseFrameBound()
if err != nil {
return nil, err
}
frame.Start = *startBound
// End is nil for single bound
}
return frame, nil
}
// parseFrameBound parses a window frame bound
func (p *Parser) parseFrameBound() (*ast.WindowFrameBound, error) {
bound := &ast.WindowFrameBound{}
if p.isType(models.TokenTypeUnbounded) {
p.advance() // Consume UNBOUNDED
if p.isType(models.TokenTypePreceding) {
bound.Type = "UNBOUNDED PRECEDING"
p.advance() // Consume PRECEDING
} else if p.isType(models.TokenTypeFollowing) {
bound.Type = "UNBOUNDED FOLLOWING"
p.advance() // Consume FOLLOWING
} else {
return nil, p.expectedError("PRECEDING or FOLLOWING after UNBOUNDED")
}
} else if p.isType(models.TokenTypeCurrent) {
p.advance() // Consume CURRENT
if !p.isType(models.TokenTypeRow) {
return nil, p.expectedError("ROW after CURRENT")
}
bound.Type = "CURRENT ROW"
p.advance() // Consume ROW
} else {
// Numeric bound
expr, err := p.parseExpression()
if err != nil {
return nil, err
}
bound.Value = expr
if p.isType(models.TokenTypePreceding) {
bound.Type = "PRECEDING"
p.advance() // Consume PRECEDING
} else if p.isType(models.TokenTypeFollowing) {
bound.Type = "FOLLOWING"
p.advance() // Consume FOLLOWING
} else {
return nil, p.expectedError("PRECEDING or FOLLOWING after numeric value")
}
}
return bound, nil
}
// parseNullsClause parses the optional NULLS FIRST/LAST clause in ORDER BY expressions.
// Returns a pointer to bool indicating null ordering: true for NULLS FIRST, false for NULLS LAST, nil if not specified.
func (p *Parser) parseNullsClause() (*bool, error) {
if p.isType(models.TokenTypeNulls) {
p.advance() // Consume NULLS
if p.isType(models.TokenTypeFirst) {
t := true
p.advance() // Consume FIRST
return &t, nil
} else if p.isType(models.TokenTypeLast) {
f := false
p.advance() // Consume LAST
return &f, nil
} else {
return nil, p.expectedError("FIRST or LAST after NULLS")
}
}
return nil, nil
}
// parseGroupingExpressionList parses a parenthesized, comma-separated list of expressions