(GenericLexer lexer)
| 982 | } |
| 983 | |
| 984 | private CharSequence optTok(GenericLexer lexer) throws SqlException { |
| 985 | CharSequence tok = SqlUtil.fetchNext(lexer); |
| 986 | if (tok == null || (subQueryMode && Chars.equals(tok, ')') && !pivotMode)) { |
| 987 | return null; |
| 988 | } |
| 989 | return tok; |
| 990 | } |
| 991 | |
| 992 | private IQueryModel parseAsSubQueryAndExpectClosingBrace( |
| 993 | GenericLexer lexer, |
no test coverage detected