
The fwf test now only tests the functionality of the rules themselves, not the parsing. The fwf_syntax test handles the testing of the parser. The fwf2 test was removed as it was almost identical with the original fwf test.
13 lines
406 B
Plaintext
13 lines
406 B
Plaintext
select sum(1) from test.t1;
|
|
select avg(1) from test.t1;
|
|
select sum(avg(1)) from test.t1;
|
|
select my_function(1) from test.t1;
|
|
select my_function("1") from test.t1;
|
|
select * from test.t1 where 1 = 1;
|
|
select * from test.t1 where 1 >= 1;
|
|
select * from test.t1 where 1 <= 1;
|
|
select * from test.t1 where 1 != 1;
|
|
select * from test.t1 where 1 <> 1;
|
|
select function(*) from test.t1;
|
|
select insert(*) from test.t1;
|