Uses of Class
org.apache.ignite.internal.sql.SqlLexer
-
Packages that use SqlLexer Package Description org.apache.ignite.internal.sql org.apache.ignite.internal.sql.command -
-
Uses of SqlLexer in org.apache.ignite.internal.sql
Methods in org.apache.ignite.internal.sql with parameters of type SqlLexer Modifier and Type Method Description static SqlParseExceptionSqlParserUtils. errorUnexpectedToken(SqlLexer lex, String expToken)Create generic parse exception due to unexpected token.static booleanSqlParserUtils. parseBoolean(SqlLexer lex)Parse boolean parameter value based on presence of tokens 1, 0, ON, OFF.static StringSqlParserUtils. parseIdentifier(SqlLexer lex, String... additionalExpTokens)Process name.static booleanSqlParserUtils. parseIfExists(SqlLexer lex)Parse IF EXISTS statement.static booleanSqlParserUtils. parseIfNotExists(SqlLexer lex)Parse IF NOT EXISTS statement.static intSqlParserUtils. parseInt(SqlLexer lex)Parse integer value (positive or negative).static SqlQualifiedNameSqlParserUtils. parseQualifiedIdentifier(SqlLexer lex, String... additionalExpTokens)Process qualified name.static StringSqlParserUtils. parseString(SqlLexer lex, String... additionalExpTokens)Process name.static StringSqlParserUtils. parseUsername(SqlLexer lex, String... additionalExpTokens)Process name.static booleanSqlParserUtils. skipCommaOrRightParenthesis(SqlLexer lex)Skip comma or right parenthesis.static voidSqlParserUtils. skipIfMatches(SqlLexer lex, SqlLexerTokenType tokenTyp)Skip next token if it matches expected type.static voidSqlParserUtils. skipIfMatchesKeyword(SqlLexer lex, String expKeyword)Skip token if it matches expected keyword.static booleanSqlParserUtils. skipIfMatchesOptionalKeyword(SqlLexer lex, String expKeyword)Skip token if it matches expected keyword by using lookahead. -
Uses of SqlLexer in org.apache.ignite.internal.sql.command
Methods in org.apache.ignite.internal.sql.command with parameters of type SqlLexer Modifier and Type Method Description SqlCommandSqlAlterTableCommand. parse(SqlLexer lex)Parse command.SqlCommandSqlAlterUserCommand. parse(SqlLexer lex)Parse command.SqlCommandSqlAnalyzeCommand. parse(SqlLexer lex)Parse command.SqlCommandSqlBulkLoadCommand. parse(SqlLexer lex)Parses the command.SqlCommandSqlCommand. parse(SqlLexer lex)Parse command.SqlCommandSqlCreateIndexCommand. parse(SqlLexer lex)Parse command.SqlCommandSqlCreateUserCommand. parse(SqlLexer lex)Parse command.SqlCommandSqlCreateViewCommand. parse(SqlLexer lex)Parse command.SqlCommandSqlDropIndexCommand. parse(SqlLexer lex)Parse command.SqlCommandSqlDropUserCommand. parse(SqlLexer lex)Parse command.SqlCommandSqlDropViewCommand. parse(SqlLexer lex)Parse command.SqlCommandSqlKillClientCommand. parse(SqlLexer lex)Parse command.SqlCommandSqlKillComputeTaskCommand. parse(SqlLexer lex)Parse command.SqlCommandSqlKillContinuousQueryCommand. parse(SqlLexer lex)Parse command.SqlCommandSqlKillQueryCommand. parse(SqlLexer lex)Parse command.SqlCommandSqlKillScanQueryCommand. parse(SqlLexer lex)Parse command.SqlCommandSqlKillServiceCommand. parse(SqlLexer lex)Parse command.SqlCommandSqlKillTransactionCommand. parse(SqlLexer lex)Parse command.SqlCommandSqlSetStreamingCommand. parse(SqlLexer lex)Parse command.SqlCommandSqlStatisticsCommands. parse(SqlLexer lex)Parse command.protected String[]SqlStatisticsCommands. parseColumnList(SqlLexer lex, boolean allowParams)protected booleanSqlStatisticsCommands. tryEnd(SqlLexer lex)Test if it is the end of command.
-