Skip to content

Commit 71db62b

Browse files
committed
Remove extra semicolon in window_functions test, fixing 39 pending statements
The query.sql had an extra standalone `;` on line 384 that was throwing off statement numbering and causing parse errors. Removing it fixes all 39 pending explain_todo statements for this test.
1 parent 73b21ea commit 71db62b

File tree

2 files changed

+1
-37
lines changed

2 files changed

+1
-37
lines changed
Lines changed: 1 addition & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,8 @@
11
{
22
"explain_todo": {
3-
"stmt102": true,
4-
"stmt103": true,
5-
"stmt104": true,
6-
"stmt105": true,
7-
"stmt106": true,
83
"stmt107": true,
94
"stmt108": true,
105
"stmt109": true,
11-
"stmt110": true,
12-
"stmt111": true,
13-
"stmt112": true,
14-
"stmt70": true,
15-
"stmt71": true,
16-
"stmt72": true,
17-
"stmt73": true,
18-
"stmt74": true,
19-
"stmt75": true,
20-
"stmt77": true,
21-
"stmt78": true,
22-
"stmt79": true,
23-
"stmt80": true,
24-
"stmt81": true,
25-
"stmt82": true,
26-
"stmt83": true,
27-
"stmt84": true,
28-
"stmt85": true,
29-
"stmt86": true,
30-
"stmt87": true,
31-
"stmt88": true,
32-
"stmt89": true,
33-
"stmt90": true,
34-
"stmt91": true,
35-
"stmt92": true,
36-
"stmt93": true,
37-
"stmt94": true,
38-
"stmt95": true,
39-
"stmt96": true,
40-
"stmt97": true,
41-
"stmt98": true
6+
"stmt110": true
427
}
438
}

parser/testdata/01591_window_functions/query.sql

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,6 @@ window w as (partition by p order by number
381381
rows between unbounded preceding and unbounded following)
382382
order by number
383383
settings max_block_size = 3;
384-
;
385384

386385
-- careful with auto-application of Null combinator
387386
select lagInFrame(toNullable(1)) over ();

0 commit comments

Comments
 (0)