diff options
Diffstat (limited to 'tests/format.html')
-rw-r--r-- | tests/format.html | 29 |
1 files changed, 28 insertions, 1 deletions
diff --git a/tests/format.html b/tests/format.html index 6c88c75..8a00903 100644 --- a/tests/format.html +++ b/tests/format.html @@ -754,4 +754,31 @@ WHERE ) AND ( ( - (SomeOtherColumn = 2);
\ No newline at end of file + (SomeOtherColumn = 2); + +SELECT + * +LIMIT + 1; +SELECT + a, + b, + c, + d +FROM + e +LIMIT + 1, 2; +SELECT + 1, + 2, + 3 +WHERE + a in (1, 2, 3, 4, 5) + and b = 5; + +SELECT + @"weird variable name"; + +SELECT + "no closing quote
\ No newline at end of file |