add support for '' in string literals
This commit is contained in:
parent
72b67166d9
commit
8adc169b38
5 changed files with 18 additions and 3 deletions
4
TODO
4
TODO
|
@ -12,6 +12,10 @@ FETCH { FIRST | NEXT } [ count ] { ROW | ROWS } ONLY
|
|||
in the postgresql docs, the start and count must be in parens unless
|
||||
they are a single integer
|
||||
|
||||
select * from generate_series(0,99) offset 5 fetch next 5 row only;
|
||||
select * from generate_series(0,99) offset 5;
|
||||
select * from generate_series(0,99) fetch next 5 row only;
|
||||
|
||||
+ sql server top syntax
|
||||
|
||||
more dots: implement as dot operator
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue