MCPcopy Create free account
hub / github.com/questdb/questdb / notTermTok

Method notTermTok

core/src/main/java/io/questdb/griffin/SqlParser.java:976–982  ·  view source on GitHub ↗
(GenericLexer lexer)

Source from the content-addressed store, hash-verified

974 }
975
976 private CharSequence notTermTok(GenericLexer lexer) throws SqlException {
977 CharSequence tok = tok(lexer, "')' or ','");
978 if (isFieldTerm(tok)) {
979 throw err(lexer, tok, "missing column definition");
980 }
981 return tok;
982 }
983
984 private CharSequence optTok(GenericLexer lexer) throws SqlException {
985 CharSequence tok = SqlUtil.fetchNext(lexer);

Callers 1

Calls 3

tokMethod · 0.95
isFieldTermMethod · 0.95
errMethod · 0.95

Tested by

no test coverage detected