1
Fork 0

add support for '' in string literals

This commit is contained in:
Jake Wheat 2013-12-17 15:09:28 +02:00
parent 72b67166d9
commit 8adc169b38
5 changed files with 18 additions and 3 deletions

4
TODO
View file

@ -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