(GenericLexer lexer)
| 667 | } |
| 668 | |
| 669 | private void expectBy(GenericLexer lexer) throws SqlException { |
| 670 | if (isByKeyword(tok(lexer, "'by'"))) { |
| 671 | return; |
| 672 | } |
| 673 | throw SqlException.$((lexer.lastTokenPosition()), "'by' expected"); |
| 674 | } |
| 675 | |
| 676 | private double expectDouble(GenericLexer lexer) throws SqlException { |
| 677 | CharSequence tok = GenericLexer.unquote(expectStringLiteral(lexer).token); |
no test coverage detected