Class CCJSqlParser

All Implemented Interfaces:
CCJSqlParserConstants, CCJSqlParserTreeConstants

The parser generated by JavaCC
  • Field Details

    • jjtree

      protected JJTCCJSqlParserState jjtree
    • bracketsCounter

      public int bracketsCounter
    • caseCounter

      public int caseCounter
    • interrupted

      public boolean interrupted
    • token_source

      public CCJSqlParserTokenManager token_source
      Generated Token Manager.
    • jj_input_stream

      SimpleCharStream jj_input_stream
    • token

      public Token token
      Current token.
    • jj_nt

      public Token jj_nt
      Next token.
    • jj_ntk

      private int jj_ntk
    • jj_scanpos

      private Token jj_scanpos
    • jj_lastpos

      private Token jj_lastpos
    • jj_la

      private int jj_la
    • jj_lookingAhead

      private boolean jj_lookingAhead
      Whether we are looking ahead.
    • jj_semLA

      private boolean jj_semLA
    • jj_gen

      private int jj_gen
    • jj_la1

      private final int[] jj_la1
    • jj_la1_0

      private static int[] jj_la1_0
    • jj_la1_1

      private static int[] jj_la1_1
    • jj_la1_2

      private static int[] jj_la1_2
    • jj_la1_3

      private static int[] jj_la1_3
    • jj_la1_4

      private static int[] jj_la1_4
    • jj_la1_5

      private static int[] jj_la1_5
    • jj_la1_6

      private static int[] jj_la1_6
    • jj_la1_7

      private static int[] jj_la1_7
    • jj_la1_8

      private static int[] jj_la1_8
    • jj_la1_9

      private static int[] jj_la1_9
    • jj_la1_10

      private static int[] jj_la1_10
    • jj_la1_11

      private static int[] jj_la1_11
    • jj_la1_12

      private static int[] jj_la1_12
    • jj_la1_13

      private static int[] jj_la1_13
    • jj_la1_14

      private static int[] jj_la1_14
    • jj_2_rtns

      private final CCJSqlParser.JJCalls[] jj_2_rtns
    • jj_rescan

      private boolean jj_rescan
    • jj_gc

      private int jj_gc
    • jj_ls

      private static final CCJSqlParser.LookaheadSuccess jj_ls
    • jj_expentries

      private List<int[]> jj_expentries
    • jj_expentry

      private int[] jj_expentry
    • jj_kind

      private int jj_kind
    • jj_lasttokens

      private int[] jj_lasttokens
    • jj_endpos

      private int jj_endpos
    • trace_enabled

      private boolean trace_enabled
  • Constructor Details

  • Method Details

    • withConfiguration

      public CCJSqlParser withConfiguration(FeatureConfiguration configuration)
    • getConfiguration

      public FeatureConfiguration getConfiguration()
      Specified by:
      getConfiguration in class AbstractJSqlParser<CCJSqlParser>
    • me

      public CCJSqlParser me()
      Specified by:
      me in class AbstractJSqlParser<CCJSqlParser>
    • linkAST

      private void linkAST(ASTNodeAccess access, SimpleNode node)
    • getASTRoot

      public Node getASTRoot()
    • Statement

      public final Statement Statement() throws ParseException
      Throws:
      ParseException
    • SingleStatement

      public final Statement SingleStatement() throws ParseException
      Throws:
      ParseException
    • Block

      public final Block Block() throws ParseException
      Throws:
      ParseException
    • Statements

      public final Statements Statements() throws ParseException
      Throws:
      ParseException
    • error_skipto

      void error_skipto(int kind) throws ParseException
      Throws:
      ParseException
    • Declare

      public final DeclareStatement Declare() throws ParseException
      Throws:
      ParseException
    • Set

      public final SetStatement Set() throws ParseException
      Throws:
      ParseException
    • Reset

      public final ResetStatement Reset() throws ParseException
      Throws:
      ParseException
    • RenameTableStatement

      public final RenameTableStatement RenameTableStatement() throws ParseException
      Throws:
      ParseException
    • PurgeStatement

      public final PurgeStatement PurgeStatement() throws ParseException
      Throws:
      ParseException
    • Describe

      public final DescribeStatement Describe() throws ParseException
      Throws:
      ParseException
    • Explain

      public final ExplainStatement Explain() throws ParseException
      Throws:
      ParseException
    • ExplainOptionBoolean

      public final String ExplainOptionBoolean() throws ParseException
      Postgres supports TRUE,ON,1,FALSE,OFF,0 as values
      Throws:
      ParseException
    • ExplainFormatOption

      public final String ExplainFormatOption() throws ParseException
      The output format, which can be TEXT, XML, JSON, or YAML
      Throws:
      ParseException
    • ExplainStatementOptions

      public final List<ExplainStatement.Option> ExplainStatementOptions() throws ParseException
      Options for explain, see https://www.postgresql.org/docs/9.1/sql-explain.html
      Throws:
      ParseException
    • Use

      public final UseStatement Use() throws ParseException
      Throws:
      ParseException
    • Show

      public final Statement Show() throws ParseException
      Throws:
      ParseException
    • ShowColumns

      public final ShowColumnsStatement ShowColumns() throws ParseException
      Throws:
      ParseException
    • ShowIndex

      public final ShowIndexStatement ShowIndex() throws ParseException
      Throws:
      ParseException
    • RefreshMaterializedView

      public final Statement RefreshMaterializedView() throws ParseException
      Throws:
      ParseException
    • ShowTables

      public final ShowTablesStatement ShowTables() throws ParseException
      Throws:
      ParseException
    • Values

      public final Values Values() throws ParseException
      Throws:
      ParseException
    • ReturningClause

      public final ReturningClause ReturningClause() throws ParseException
      Throws:
      ParseException
    • Update

      public final Update Update(List<WithItem> with) throws ParseException
      Throws:
      ParseException
    • UpdateSets

      public final List<UpdateSet> UpdateSets() throws ParseException
      Throws:
      ParseException
    • Insert

      public final Insert Insert(List<WithItem> with) throws ParseException
      Throws:
      ParseException
    • InsertConflictTarget

      public final InsertConflictTarget InsertConflictTarget() throws ParseException
      Throws:
      ParseException
    • InsertConflictAction

      public final InsertConflictAction InsertConflictAction() throws ParseException
      Throws:
      ParseException
    • OutputClause

      public final OutputClause OutputClause() throws ParseException
      Throws:
      ParseException
    • Upsert

      public final Upsert Upsert() throws ParseException
      Throws:
      ParseException
    • Delete

      public final Delete Delete(List<WithItem> with) throws ParseException
      Throws:
      ParseException
    • Merge

      public final Statement Merge(List<WithItem> with) throws ParseException
      Throws:
      ParseException
    • MergeOperations

      public final List<MergeOperation> MergeOperations() throws ParseException
      Throws:
      ParseException
    • MergeWhenMatched

      public final MergeOperation MergeWhenMatched() throws ParseException
      Throws:
      ParseException
    • MergeDeleteClause

      public final MergeOperation MergeDeleteClause(Expression predicate) throws ParseException
      Throws:
      ParseException
    • MergeUpdateClause

      public final MergeOperation MergeUpdateClause(Expression predicate) throws ParseException
      Throws:
      ParseException
    • MergeWhenNotMatched

      public final MergeOperation MergeWhenNotMatched() throws ParseException
      Throws:
      ParseException
    • RelObjectNameList

      public final List<String> RelObjectNameList() throws ParseException
      Throws:
      ParseException
    • Column

      public final Column Column() throws ParseException
      Throws:
      ParseException
    • RelObjectNameWithoutValue

      public final String RelObjectNameWithoutValue() throws ParseException
      Throws:
      ParseException
    • RelObjectName

      public final String RelObjectName() throws ParseException
      Throws:
      ParseException
    • RelObjectNameWithoutStart

      public final String RelObjectNameWithoutStart() throws ParseException
      Throws:
      ParseException
    • RelObjectNameExt

      public final String RelObjectNameExt() throws ParseException
      Throws:
      ParseException
    • RelObjectNameExt2

      public final String RelObjectNameExt2() throws ParseException
      Throws:
      ParseException
    • Table

      public final Table Table() throws ParseException
      Throws:
      ParseException
    • TableWithAlias

      public final Table TableWithAlias() throws ParseException
      Throws:
      ParseException
    • TableWithAliasAndMysqlIndexHint

      public final Table TableWithAliasAndMysqlIndexHint() throws ParseException
      Throws:
      ParseException
    • Number

      public final Number Number() throws ParseException
      Throws:
      ParseException
    • SampleClause

      public final SampleClause SampleClause() throws ParseException
      Throws:
      ParseException
    • SelectWithWithItems

      public final Select SelectWithWithItems(List<WithItem> withItems) throws ParseException
      Throws:
      ParseException
    • Select

      public final Select Select() throws ParseException
      Throws:
      ParseException
    • TableStatement

      public final TableStatement TableStatement() throws ParseException
      Throws:
      ParseException
    • ParenthesedSelect

      public final ParenthesedSelect ParenthesedSelect() throws ParseException
      Throws:
      ParseException
    • LateralView

      public final LateralView LateralView() throws ParseException
      Throws:
      ParseException
    • ForClause

      public final ForClause ForClause() throws ParseException
      Throws:
      ParseException
    • LateralViews

      public final List<LateralView> LateralViews() throws ParseException
      Throws:
      ParseException
    • LateralSubSelect

      public final LateralSubSelect LateralSubSelect() throws ParseException
      Throws:
      ParseException
    • PlainSelect

      public final PlainSelect PlainSelect() throws ParseException
      Throws:
      ParseException
    • SetOperationList

      public final Select SetOperationList(Select select) throws ParseException
      Throws:
      ParseException
    • WithList

      public final List<WithItem> WithList() throws ParseException
      Throws:
      ParseException
    • WithItem

      public final WithItem WithItem() throws ParseException
      Throws:
      ParseException
    • SelectItemsList

      public final List<SelectItem<?>> SelectItemsList() throws ParseException
      Throws:
      ParseException
    • SelectItem

      public final SelectItem SelectItem() throws ParseException
      Throws:
      ParseException
    • AllColumns

      public final AllColumns AllColumns() throws ParseException
      Throws:
      ParseException
    • AllTableColumns

      public final AllTableColumns AllTableColumns() throws ParseException
      Throws:
      ParseException
    • Alias

      public final Alias Alias() throws ParseException
      Throws:
      ParseException
    • SQLServerHint

      public final void SQLServerHint(SQLServerHints hints) throws ParseException
      Throws:
      ParseException
    • SQLServerHints

      public final SQLServerHints SQLServerHints() throws ParseException
      Throws:
      ParseException
    • MySQLIndexHint

      public final MySQLIndexHint MySQLIndexHint() throws ParseException
      Throws:
      ParseException
    • FunctionItem

      public final SelectItem<Function> FunctionItem() throws ParseException
      Throws:
      ParseException
    • PivotForColumns

      public final ExpressionList<Column> PivotForColumns() throws ParseException
      Throws:
      ParseException
    • PivotFunctionItems

      public final List<SelectItem<Function>> PivotFunctionItems() throws ParseException
      Throws:
      ParseException
    • ExpressionListItem

      public final SelectItem<ExpressionList> ExpressionListItem() throws ParseException
      Throws:
      ParseException
    • PivotMultiInItems

      public final List<SelectItem<ExpressionList>> PivotMultiInItems() throws ParseException
      Throws:
      ParseException
    • Pivot

      public final Pivot Pivot() throws ParseException
      Throws:
      ParseException
    • PivotXml

      public final PivotXml PivotXml() throws ParseException
      Throws:
      ParseException
    • UnPivot

      public final UnPivot UnPivot() throws ParseException
      Throws:
      ParseException
    • IntoClause

      public final List<Table> IntoClause() throws ParseException
      Throws:
      ParseException
    • ParenthesedFromItem

      public final FromItem ParenthesedFromItem() throws ParseException
      Throws:
      ParseException
    • FromItem

      public final FromItem FromItem() throws ParseException
      Throws:
      ParseException
    • JoinsList

      public final List<Join> JoinsList() throws ParseException
      Throws:
      ParseException
    • JoinHint

      public final JoinHint JoinHint() throws ParseException
      Throws:
      ParseException
    • JoinerExpression

      public final Join JoinerExpression() throws ParseException
      Throws:
      ParseException
    • JoinWindow

      public final KSQLJoinWindow JoinWindow() throws ParseException
      Throws:
      ParseException
    • KSQLWindowClause

      public final KSQLWindow KSQLWindowClause() throws ParseException
      Throws:
      ParseException
    • WhereClause

      public final Expression WhereClause() throws ParseException
      Throws:
      ParseException
    • OracleHierarchicalQueryClause

      public final OracleHierarchicalExpression OracleHierarchicalQueryClause() throws ParseException
      Throws:
      ParseException
    • GroupByColumnReferences

      public final GroupByElement GroupByColumnReferences() throws ParseException
      Throws:
      ParseException
    • GroupingSet

      public final ExpressionList GroupingSet() throws ParseException
      Throws:
      ParseException
    • Having

      public final Expression Having() throws ParseException
      Throws:
      ParseException
    • Qualify

      public final Expression Qualify() throws ParseException
      Throws:
      ParseException
    • OrderByElements

      public final List<OrderByElement> OrderByElements() throws ParseException
      Throws:
      ParseException
    • OrderByElement

      public final OrderByElement OrderByElement() throws ParseException
      Throws:
      ParseException
    • JdbcParameter

      public final JdbcParameter JdbcParameter() throws ParseException
      Throws:
      ParseException
    • LimitWithOffset

      public final Limit LimitWithOffset() throws ParseException
      Throws:
      ParseException
    • PlainLimit

      public final Limit PlainLimit() throws ParseException
      Throws:
      ParseException
    • LimitBy

      public final Limit LimitBy() throws ParseException
      Clickhouse LIMIT BY
      Throws:
      ParseException
      See Also:
    • Offset

      public final Offset Offset() throws ParseException
      Throws:
      ParseException
    • Fetch

      public final Fetch Fetch() throws ParseException
      Throws:
      ParseException
    • WithIsolation

      public final WithIsolation WithIsolation() throws ParseException
      Throws:
      ParseException
    • OptimizeFor

      public final OptimizeFor OptimizeFor() throws ParseException
      Throws:
      ParseException
    • Top

      public final Top Top() throws ParseException
      Throws:
      ParseException
    • Skip

      public final Skip Skip() throws ParseException
      Throws:
      ParseException
    • getOracleHint

      OracleHint getOracleHint() throws ParseException
      Throws:
      ParseException
    • First

      public final First First() throws ParseException
      Throws:
      ParseException
    • Expression

      public final Expression Expression() throws ParseException
      Throws:
      ParseException
    • XorExpression

      public final Expression XorExpression() throws ParseException
      Throws:
      ParseException
    • OrExpression

      public final Expression OrExpression() throws ParseException
      Throws:
      ParseException
    • AndExpression

      public final Expression AndExpression() throws ParseException
      Throws:
      ParseException
    • Condition

      public final Expression Condition() throws ParseException
      Throws:
      ParseException
    • OverlapsCondition

      public final Expression OverlapsCondition() throws ParseException
      Throws:
      ParseException
    • RegularCondition

      public final Expression RegularCondition() throws ParseException
      Throws:
      ParseException
    • SQLCondition

      public final Expression SQLCondition() throws ParseException
      Throws:
      ParseException
    • InExpression

      public final Expression InExpression() throws ParseException
      Throws:
      ParseException
    • Between

      public final Expression Between(Expression leftExpression) throws ParseException
      Throws:
      ParseException
    • LikeExpression

      public final Expression LikeExpression(Expression leftExpression) throws ParseException
      Throws:
      ParseException
    • SimilarToExpression

      public final Expression SimilarToExpression(Expression leftExpression) throws ParseException
      Throws:
      ParseException
    • IsDistinctExpression

      public final Expression IsDistinctExpression(Expression leftExpression) throws ParseException
      Throws:
      ParseException
    • IsNullExpression

      public final Expression IsNullExpression(Expression leftExpression) throws ParseException
      Throws:
      ParseException
    • IsBooleanExpression

      public final Expression IsBooleanExpression(Expression leftExpression) throws ParseException
      Throws:
      ParseException
    • ExistsExpression

      public final Expression ExistsExpression() throws ParseException
      Throws:
      ParseException
    • MemberOfExpression

      public final Expression MemberOfExpression(Expression leftExpression) throws ParseException
      Throws:
      ParseException
    • ExpressionList

      public final ExpressionList ExpressionList() throws ParseException
      Throws:
      ParseException
    • ParenthesedExpressionList

      public final ParenthesedExpressionList ParenthesedExpressionList() throws ParseException
      Throws:
      ParseException
    • SimpleExpressionList

      public final ExpressionList SimpleExpressionList() throws ParseException
      Throws:
      ParseException
    • ColumnList

      public final ExpressionList<Column> ColumnList() throws ParseException
      Throws:
      ParseException
    • ParenthesedColumnList

      public final ParenthesedExpressionList<Column> ParenthesedColumnList() throws ParseException
      Throws:
      ParseException
    • ComplexExpressionList

      public final ExpressionList ComplexExpressionList() throws ParseException
      Throws:
      ParseException
    • NamedExpressionListExprFirst

      public final NamedExpressionList NamedExpressionListExprFirst() throws ParseException
      Throws:
      ParseException
    • ComparisonItem

      public final Expression ComparisonItem() throws ParseException
      Throws:
      ParseException
    • AnyComparisonExpression

      public final Expression AnyComparisonExpression() throws ParseException
      Throws:
      ParseException
    • SimpleExpression

      public final Expression SimpleExpression() throws ParseException
      Throws:
      ParseException
    • ConcatExpression

      public final Expression ConcatExpression() throws ParseException
      Throws:
      ParseException
    • BitwiseAndOr

      public final Expression BitwiseAndOr() throws ParseException
      Throws:
      ParseException
    • AdditiveExpression

      public final Expression AdditiveExpression() throws ParseException
      Throws:
      ParseException
    • MultiplicativeExpression

      public final Expression MultiplicativeExpression() throws ParseException
      Throws:
      ParseException
    • BitwiseXor

      public final Expression BitwiseXor() throws ParseException
      Throws:
      ParseException
    • ArrayExpression

      public final Expression ArrayExpression(Expression obj) throws ParseException
      Throws:
      ParseException
    • PrimaryExpression

      public final Expression PrimaryExpression() throws ParseException
      Throws:
      ParseException
    • ConnectByRootOperator

      public final ConnectByRootOperator ConnectByRootOperator() throws ParseException
      Throws:
      ParseException
    • NextValExpression

      public final NextValExpression NextValExpression() throws ParseException
      Throws:
      ParseException
    • JdbcNamedParameter

      public final JdbcNamedParameter JdbcNamedParameter() throws ParseException
      Throws:
      ParseException
    • OracleNamedFunctionParameter

      public final OracleNamedFunctionParameter OracleNamedFunctionParameter() throws ParseException
      Throws:
      ParseException
    • UserVariable

      public final UserVariable UserVariable() throws ParseException
      Throws:
      ParseException
    • NumericBind

      public final NumericBind NumericBind() throws ParseException
      Throws:
      ParseException
    • DateTimeLiteralExpression

      public final DateTimeLiteralExpression DateTimeLiteralExpression() throws ParseException
      Throws:
      ParseException
    • RangeExpression

      public final RangeExpression RangeExpression(Expression startExpression) throws ParseException
      Throws:
      ParseException
    • ArrayConstructor

      public final ArrayConstructor ArrayConstructor(boolean arrayKeyword) throws ParseException
      Throws:
      ParseException
    • ParenthesedExpression

      public final Expression ParenthesedExpression() throws ParseException
      Throws:
      ParseException
    • JsonExpression

      public final JsonExpression JsonExpression(Expression expr, List<Map.Entry<String,String>> idents) throws ParseException
      Throws:
      ParseException
    • JsonFunction

      public final JsonFunction JsonFunction() throws ParseException
      Throws:
      ParseException
    • JsonAggregateFunction

      public final JsonAggregateFunction JsonAggregateFunction() throws ParseException
      Throws:
      ParseException
    • IntervalExpression

      public final IntervalExpression IntervalExpression() throws ParseException
      Throws:
      ParseException
    • IntervalExpressionWithoutInterval

      public final IntervalExpression IntervalExpressionWithoutInterval(Expression expr) throws ParseException
      Throws:
      ParseException
    • KeepExpression

      public final KeepExpression KeepExpression() throws ParseException
      Throws:
      ParseException
    • windowFun

      public final void windowFun(AnalyticExpression retval) throws ParseException
      Throws:
      ParseException
    • windowDefinition

      public final WindowDefinition windowDefinition() throws ParseException
      Throws:
      ParseException
    • AnalyticExpression

      public final AnalyticExpression AnalyticExpression(Function function) throws ParseException
      Throws:
      ParseException
    • WindowElement

      public final WindowElement WindowElement() throws ParseException
      Throws:
      ParseException
    • WindowOffset

      public final WindowOffset WindowOffset() throws ParseException
      Throws:
      ParseException
    • ExtractExpression

      public final ExtractExpression ExtractExpression() throws ParseException
      Throws:
      ParseException
    • CastExpression

      public final CastExpression CastExpression() throws ParseException
      Throws:
      ParseException
    • CaseWhenExpression

      public final Expression CaseWhenExpression() throws ParseException
      Throws:
      ParseException
    • WhenThenSearchCondition

      public final WhenClause WhenThenSearchCondition() throws ParseException
      Throws:
      ParseException
    • RowConstructor

      public final RowConstructor RowConstructor() throws ParseException
      Throws:
      ParseException
    • VariableExpression

      public final EqualsTo VariableExpression() throws ParseException
      TODO: VariableExpression should be a standalone class with more operations available.
      Throws:
      ParseException
    • Execute

      public final Execute Execute() throws ParseException
      Throws:
      ParseException
    • FullTextSearch

      public final FullTextSearch FullTextSearch() throws ParseException
      Throws:
      ParseException
    • Function

      public final Function Function() throws ParseException
      Throws:
      ParseException
    • SpecialStringFunctionWithNamedParameters

      public final Function SpecialStringFunctionWithNamedParameters() throws ParseException
      Throws:
      ParseException
    • SimpleFunction

      public final Function SimpleFunction() throws ParseException
      Throws:
      ParseException
    • InternalFunction

      public final Function InternalFunction(boolean escaped) throws ParseException
      Throws:
      ParseException
    • XMLSerializeExpr

      public final XMLSerializeExpr XMLSerializeExpr() throws ParseException
      Throws:
      ParseException
    • MySQLGroupConcat

      public final MySQLGroupConcat MySQLGroupConcat() throws ParseException
      Throws:
      ParseException
    • TableFunction

      public final TableFunction TableFunction() throws ParseException
      Throws:
      ParseException
    • ColumnNamesWithParamsList

      public final List<Index.ColumnParams> ColumnNamesWithParamsList() throws ParseException
      Throws:
      ParseException
    • Index

      public final Index Index() throws ParseException
      Throws:
      ParseException
    • CreateIndex

      public final CreateIndex CreateIndex() throws ParseException
      Throws:
      ParseException
    • ColumnDefinition

      public final ColumnDefinition ColumnDefinition() throws ParseException
      Throws:
      ParseException
    • CreateSchema

      public final CreateSchema CreateSchema() throws ParseException
      Throws:
      ParseException
    • PathSpecification

      public final List<String> PathSpecification() throws ParseException
      Throws:
      ParseException
    • CreateTable

      public final CreateTable CreateTable(boolean isUsingOrReplace) throws ParseException
      Throws:
      ParseException
    • SpannerInterleaveIn

      public final SpannerInterleaveIn SpannerInterleaveIn() throws ParseException
      Throws:
      ParseException
    • ColDataType

      public final ColDataType ColDataType() throws ParseException
      Throws:
      ParseException
    • Analyze

      public final Analyze Analyze() throws ParseException
      Throws:
      ParseException
    • ColumnWithCommentList

      public final ExpressionList<Column> ColumnWithCommentList() throws ParseException
      Throws:
      ParseException
    • CreateView

      public final CreateView CreateView(boolean isUsingOrReplace) throws ParseException
      Throws:
      ParseException
    • CreateViewTailComment

      public final List<String> CreateViewTailComment() throws ParseException
      Throws:
      ParseException
    • Action

      public final ReferentialAction.Action Action() throws ParseException
      Throws:
      ParseException
    • AlterView

      public final AlterView AlterView(boolean useReplace) throws ParseException
      Throws:
      ParseException
    • CreateParameter

      public final List<String> CreateParameter() throws ParseException
      Throws:
      ParseException
    • RowMovement

      public final RowMovement RowMovement() throws ParseException
      Throws:
      ParseException
    • AList

      public final String AList() throws ParseException
      Throws:
      ParseException
    • ColumnsNamesListItem

      public final String ColumnsNamesListItem() throws ParseException
      Throws:
      ParseException
    • ColumnsNamesList

      public final List<String> ColumnsNamesList() throws ParseException
      Throws:
      ParseException
    • FuncArgsListItem

      public final String FuncArgsListItem() throws ParseException
      Throws:
      ParseException
    • FuncArgsList

      public final List<String> FuncArgsList() throws ParseException
      Throws:
      ParseException
    • Drop

      public final Drop Drop() throws ParseException
      Throws:
      ParseException
    • Truncate

      public final Truncate Truncate() throws ParseException
      Throws:
      ParseException
    • AlterExpressionColumnDataType

      public final AlterExpression.ColumnDataType AlterExpressionColumnDataType() throws ParseException
      Throws:
      ParseException
    • AlterExpressionColumnDropNotNull

      public final AlterExpression.ColumnDropNotNull AlterExpressionColumnDropNotNull() throws ParseException
      Throws:
      ParseException
    • AlterExpressionColumnDropDefault

      public final AlterExpression.ColumnDropDefault AlterExpressionColumnDropDefault() throws ParseException
      Throws:
      ParseException
    • AlterExpressionConstraintState

      public final List<ConstraintState> AlterExpressionConstraintState() throws ParseException
      Throws:
      ParseException
    • IndexWithComment

      public final Index IndexWithComment(Index index) throws ParseException
      Throws:
      ParseException
    • AlterExpression

      public final AlterExpression AlterExpression() throws ParseException
      This production needs refactoring to multiple smaller productions. The target class should be splitted as well.
      Throws:
      ParseException
    • Alter

      public final Statement Alter() throws ParseException
      Throws:
      ParseException
    • AlterTable

      public final Alter AlterTable() throws ParseException
      Throws:
      ParseException
    • AlterSession

      public final AlterSession AlterSession() throws ParseException
      Throws:
      ParseException
    • AlterSystemStatement

      public final AlterSystemStatement AlterSystemStatement() throws ParseException
      Throws:
      ParseException
    • Wait

      public final Wait Wait() throws ParseException
      Throws:
      ParseException
    • SavepointStatement

      public final SavepointStatement SavepointStatement() throws ParseException
      Throws:
      ParseException
    • RollbackStatement

      public final RollbackStatement RollbackStatement() throws ParseException
      Throws:
      ParseException
    • Commit

      public final Commit Commit() throws ParseException
      Throws:
      ParseException
    • Comment

      public final Comment Comment() throws ParseException
      Throws:
      ParseException
    • Grant

      public final Grant Grant() throws ParseException
      Throws:
      ParseException
    • UsersList

      public final List<String> UsersList() throws ParseException
      Throws:
      ParseException
    • readGrantTypes

      public final void readGrantTypes(ArrayList<String> privileges) throws ParseException
      Throws:
      ParseException
    • Sequence

      public final Sequence Sequence() throws ParseException
      Throws:
      ParseException
    • SequenceParameters

      public final List<Sequence.Parameter> SequenceParameters() throws ParseException
      Throws:
      ParseException
    • CreateSequence

      public final CreateSequence CreateSequence() throws ParseException
      Throws:
      ParseException
    • AlterSequence

      public final AlterSequence AlterSequence() throws ParseException
      Throws:
      ParseException
    • Create

      public final Statement Create() throws ParseException
      Throws:
      ParseException
    • CreateFunctionStatement

      public final CreateFunctionalStatement CreateFunctionStatement(boolean isUsingOrReplace) throws ParseException
      Throws:
      ParseException
    • CreateSynonym

      public final CreateSynonym CreateSynonym(boolean isUsingOrReplace) throws ParseException
      Throws:
      ParseException
    • Synonym

      public final Synonym Synonym() throws ParseException
      Throws:
      ParseException
    • UnsupportedStatement

      public final UnsupportedStatement UnsupportedStatement() throws ParseException
      Throws:
      ParseException
    • captureRest

      List<String> captureRest() throws ParseException
      Throws:
      ParseException
    • captureFunctionBody

      List<String> captureFunctionBody() throws ParseException
      Throws:
      ParseException
    • captureUnsupportedStatementDeclaration

      List<String> captureUnsupportedStatementDeclaration() throws ParseException
      Throws:
      ParseException
    • IdentifierChain

      public final String IdentifierChain() throws ParseException
      Throws:
      ParseException
    • CharacterPrimary

      public final Expression CharacterPrimary() throws ParseException
      Throws:
      ParseException
    • TranscodingFunction

      public final TranscodingFunction TranscodingFunction() throws ParseException
      Throws:
      ParseException
    • TrimFunction

      public final TrimFunction TrimFunction() throws ParseException
      Throws:
      ParseException
    • jj_2_1

      private boolean jj_2_1(int xla)
    • jj_2_2

      private boolean jj_2_2(int xla)
    • jj_2_3

      private boolean jj_2_3(int xla)
    • jj_2_4

      private boolean jj_2_4(int xla)
    • jj_2_5

      private boolean jj_2_5(int xla)
    • jj_2_6

      private boolean jj_2_6(int xla)
    • jj_2_7

      private boolean jj_2_7(int xla)
    • jj_2_8

      private boolean jj_2_8(int xla)
    • jj_2_9

      private boolean jj_2_9(int xla)
    • jj_2_10

      private boolean jj_2_10(int xla)
    • jj_2_11

      private boolean jj_2_11(int xla)
    • jj_2_12

      private boolean jj_2_12(int xla)
    • jj_2_13

      private boolean jj_2_13(int xla)
    • jj_2_14

      private boolean jj_2_14(int xla)
    • jj_2_15

      private boolean jj_2_15(int xla)
    • jj_2_16

      private boolean jj_2_16(int xla)
    • jj_2_17

      private boolean jj_2_17(int xla)
    • jj_2_18

      private boolean jj_2_18(int xla)
    • jj_2_19

      private boolean jj_2_19(int xla)
    • jj_2_20

      private boolean jj_2_20(int xla)
    • jj_2_21

      private boolean jj_2_21(int xla)
    • jj_2_22

      private boolean jj_2_22(int xla)
    • jj_2_23

      private boolean jj_2_23(int xla)
    • jj_2_24

      private boolean jj_2_24(int xla)
    • jj_2_25

      private boolean jj_2_25(int xla)
    • jj_2_26

      private boolean jj_2_26(int xla)
    • jj_2_27

      private boolean jj_2_27(int xla)
    • jj_2_28

      private boolean jj_2_28(int xla)
    • jj_2_29

      private boolean jj_2_29(int xla)
    • jj_2_30

      private boolean jj_2_30(int xla)
    • jj_2_31

      private boolean jj_2_31(int xla)
    • jj_2_32

      private boolean jj_2_32(int xla)
    • jj_2_33

      private boolean jj_2_33(int xla)
    • jj_2_34

      private boolean jj_2_34(int xla)
    • jj_2_35

      private boolean jj_2_35(int xla)
    • jj_2_36

      private boolean jj_2_36(int xla)
    • jj_2_37

      private boolean jj_2_37(int xla)
    • jj_2_38

      private boolean jj_2_38(int xla)
    • jj_2_39

      private boolean jj_2_39(int xla)
    • jj_2_40

      private boolean jj_2_40(int xla)
    • jj_2_41

      private boolean jj_2_41(int xla)
    • jj_2_42

      private boolean jj_2_42(int xla)
    • jj_2_43

      private boolean jj_2_43(int xla)
    • jj_2_44

      private boolean jj_2_44(int xla)
    • jj_2_45

      private boolean jj_2_45(int xla)
    • jj_2_46

      private boolean jj_2_46(int xla)
    • jj_2_47

      private boolean jj_2_47(int xla)
    • jj_2_48

      private boolean jj_2_48(int xla)
    • jj_2_49

      private boolean jj_2_49(int xla)
    • jj_2_50

      private boolean jj_2_50(int xla)
    • jj_2_51

      private boolean jj_2_51(int xla)
    • jj_2_52

      private boolean jj_2_52(int xla)
    • jj_2_53

      private boolean jj_2_53(int xla)
    • jj_2_54

      private boolean jj_2_54(int xla)
    • jj_2_55

      private boolean jj_2_55(int xla)
    • jj_2_56

      private boolean jj_2_56(int xla)
    • jj_2_57

      private boolean jj_2_57(int xla)
    • jj_2_58

      private boolean jj_2_58(int xla)
    • jj_2_59

      private boolean jj_2_59(int xla)
    • jj_2_60

      private boolean jj_2_60(int xla)
    • jj_2_61

      private boolean jj_2_61(int xla)
    • jj_2_62

      private boolean jj_2_62(int xla)
    • jj_2_63

      private boolean jj_2_63(int xla)
    • jj_2_64

      private boolean jj_2_64(int xla)
    • jj_2_65

      private boolean jj_2_65(int xla)
    • jj_2_66

      private boolean jj_2_66(int xla)
    • jj_2_67

      private boolean jj_2_67(int xla)
    • jj_2_68

      private boolean jj_2_68(int xla)
    • jj_2_69

      private boolean jj_2_69(int xla)
    • jj_2_70

      private boolean jj_2_70(int xla)
    • jj_2_71

      private boolean jj_2_71(int xla)
    • jj_2_72

      private boolean jj_2_72(int xla)
    • jj_2_73

      private boolean jj_2_73(int xla)
    • jj_2_74

      private boolean jj_2_74(int xla)
    • jj_2_75

      private boolean jj_2_75(int xla)
    • jj_2_76

      private boolean jj_2_76(int xla)
    • jj_2_77

      private boolean jj_2_77(int xla)
    • jj_2_78

      private boolean jj_2_78(int xla)
    • jj_2_79

      private boolean jj_2_79(int xla)
    • jj_2_80

      private boolean jj_2_80(int xla)
    • jj_2_81

      private boolean jj_2_81(int xla)
    • jj_2_82

      private boolean jj_2_82(int xla)
    • jj_2_83

      private boolean jj_2_83(int xla)
    • jj_2_84

      private boolean jj_2_84(int xla)
    • jj_2_85

      private boolean jj_2_85(int xla)
    • jj_2_86

      private boolean jj_2_86(int xla)
    • jj_2_87

      private boolean jj_2_87(int xla)
    • jj_2_88

      private boolean jj_2_88(int xla)
    • jj_2_89

      private boolean jj_2_89(int xla)
    • jj_2_90

      private boolean jj_2_90(int xla)
    • jj_2_91

      private boolean jj_2_91(int xla)
    • jj_2_92

      private boolean jj_2_92(int xla)
    • jj_2_93

      private boolean jj_2_93(int xla)
    • jj_2_94

      private boolean jj_2_94(int xla)
    • jj_2_95

      private boolean jj_2_95(int xla)
    • jj_2_96

      private boolean jj_2_96(int xla)
    • jj_2_97

      private boolean jj_2_97(int xla)
    • jj_2_98

      private boolean jj_2_98(int xla)
    • jj_2_99

      private boolean jj_2_99(int xla)
    • jj_2_100

      private boolean jj_2_100(int xla)
    • jj_2_101

      private boolean jj_2_101(int xla)
    • jj_2_102

      private boolean jj_2_102(int xla)
    • jj_2_103

      private boolean jj_2_103(int xla)
    • jj_2_104

      private boolean jj_2_104(int xla)
    • jj_2_105

      private boolean jj_2_105(int xla)
    • jj_2_106

      private boolean jj_2_106(int xla)
    • jj_2_107

      private boolean jj_2_107(int xla)
    • jj_2_108

      private boolean jj_2_108(int xla)
    • jj_2_109

      private boolean jj_2_109(int xla)
    • jj_2_110

      private boolean jj_2_110(int xla)
    • jj_2_111

      private boolean jj_2_111(int xla)
    • jj_2_112

      private boolean jj_2_112(int xla)
    • jj_2_113

      private boolean jj_2_113(int xla)
    • jj_2_114

      private boolean jj_2_114(int xla)
    • jj_2_115

      private boolean jj_2_115(int xla)
    • jj_2_116

      private boolean jj_2_116(int xla)
    • jj_2_117

      private boolean jj_2_117(int xla)
    • jj_2_118

      private boolean jj_2_118(int xla)
    • jj_2_119

      private boolean jj_2_119(int xla)
    • jj_2_120

      private boolean jj_2_120(int xla)
    • jj_2_121

      private boolean jj_2_121(int xla)
    • jj_2_122

      private boolean jj_2_122(int xla)
    • jj_2_123

      private boolean jj_2_123(int xla)
    • jj_2_124

      private boolean jj_2_124(int xla)
    • jj_2_125

      private boolean jj_2_125(int xla)
    • jj_2_126

      private boolean jj_2_126(int xla)
    • jj_2_127

      private boolean jj_2_127(int xla)
    • jj_2_128

      private boolean jj_2_128(int xla)
    • jj_2_129

      private boolean jj_2_129(int xla)
    • jj_2_130

      private boolean jj_2_130(int xla)
    • jj_2_131

      private boolean jj_2_131(int xla)
    • jj_2_132

      private boolean jj_2_132(int xla)
    • jj_2_133

      private boolean jj_2_133(int xla)
    • jj_2_134

      private boolean jj_2_134(int xla)
    • jj_2_135

      private boolean jj_2_135(int xla)
    • jj_2_136

      private boolean jj_2_136(int xla)
    • jj_2_137

      private boolean jj_2_137(int xla)
    • jj_2_138

      private boolean jj_2_138(int xla)
    • jj_2_139

      private boolean jj_2_139(int xla)
    • jj_2_140

      private boolean jj_2_140(int xla)
    • jj_2_141

      private boolean jj_2_141(int xla)
    • jj_2_142

      private boolean jj_2_142(int xla)
    • jj_2_143

      private boolean jj_2_143(int xla)
    • jj_2_144

      private boolean jj_2_144(int xla)
    • jj_2_145

      private boolean jj_2_145(int xla)
    • jj_2_146

      private boolean jj_2_146(int xla)
    • jj_2_147

      private boolean jj_2_147(int xla)
    • jj_2_148

      private boolean jj_2_148(int xla)
    • jj_2_149

      private boolean jj_2_149(int xla)
    • jj_2_150

      private boolean jj_2_150(int xla)
    • jj_2_151

      private boolean jj_2_151(int xla)
    • jj_2_152

      private boolean jj_2_152(int xla)
    • jj_2_153

      private boolean jj_2_153(int xla)
    • jj_2_154

      private boolean jj_2_154(int xla)
    • jj_2_155

      private boolean jj_2_155(int xla)
    • jj_2_156

      private boolean jj_2_156(int xla)
    • jj_2_157

      private boolean jj_2_157(int xla)
    • jj_2_158

      private boolean jj_2_158(int xla)
    • jj_2_159

      private boolean jj_2_159(int xla)
    • jj_2_160

      private boolean jj_2_160(int xla)
    • jj_2_161

      private boolean jj_2_161(int xla)
    • jj_2_162

      private boolean jj_2_162(int xla)
    • jj_2_163

      private boolean jj_2_163(int xla)
    • jj_2_164

      private boolean jj_2_164(int xla)
    • jj_2_165

      private boolean jj_2_165(int xla)
    • jj_2_166

      private boolean jj_2_166(int xla)
    • jj_2_167

      private boolean jj_2_167(int xla)
    • jj_2_168

      private boolean jj_2_168(int xla)
    • jj_2_169

      private boolean jj_2_169(int xla)
    • jj_2_170

      private boolean jj_2_170(int xla)
    • jj_2_171

      private boolean jj_2_171(int xla)
    • jj_2_172

      private boolean jj_2_172(int xla)
    • jj_2_173

      private boolean jj_2_173(int xla)
    • jj_2_174

      private boolean jj_2_174(int xla)
    • jj_2_175

      private boolean jj_2_175(int xla)
    • jj_2_176

      private boolean jj_2_176(int xla)
    • jj_2_177

      private boolean jj_2_177(int xla)
    • jj_2_178

      private boolean jj_2_178(int xla)
    • jj_2_179

      private boolean jj_2_179(int xla)
    • jj_2_180

      private boolean jj_2_180(int xla)
    • jj_2_181

      private boolean jj_2_181(int xla)
    • jj_2_182

      private boolean jj_2_182(int xla)
    • jj_2_183

      private boolean jj_2_183(int xla)
    • jj_2_184

      private boolean jj_2_184(int xla)
    • jj_2_185

      private boolean jj_2_185(int xla)
    • jj_2_186

      private boolean jj_2_186(int xla)
    • jj_2_187

      private boolean jj_2_187(int xla)
    • jj_2_188

      private boolean jj_2_188(int xla)
    • jj_2_189

      private boolean jj_2_189(int xla)
    • jj_2_190

      private boolean jj_2_190(int xla)
    • jj_2_191

      private boolean jj_2_191(int xla)
    • jj_2_192

      private boolean jj_2_192(int xla)
    • jj_2_193

      private boolean jj_2_193(int xla)
    • jj_2_194

      private boolean jj_2_194(int xla)
    • jj_2_195

      private boolean jj_2_195(int xla)
    • jj_2_196

      private boolean jj_2_196(int xla)
    • jj_2_197

      private boolean jj_2_197(int xla)
    • jj_2_198

      private boolean jj_2_198(int xla)
    • jj_2_199

      private boolean jj_2_199(int xla)
    • jj_2_200

      private boolean jj_2_200(int xla)
    • jj_2_201

      private boolean jj_2_201(int xla)
    • jj_2_202

      private boolean jj_2_202(int xla)
    • jj_2_203

      private boolean jj_2_203(int xla)
    • jj_2_204

      private boolean jj_2_204(int xla)
    • jj_2_205

      private boolean jj_2_205(int xla)
    • jj_2_206

      private boolean jj_2_206(int xla)
    • jj_2_207

      private boolean jj_2_207(int xla)
    • jj_2_208

      private boolean jj_2_208(int xla)
    • jj_2_209

      private boolean jj_2_209(int xla)
    • jj_2_210

      private boolean jj_2_210(int xla)
    • jj_2_211

      private boolean jj_2_211(int xla)
    • jj_2_212

      private boolean jj_2_212(int xla)
    • jj_2_213

      private boolean jj_2_213(int xla)
    • jj_2_214

      private boolean jj_2_214(int xla)
    • jj_2_215

      private boolean jj_2_215(int xla)
    • jj_2_216

      private boolean jj_2_216(int xla)
    • jj_2_217

      private boolean jj_2_217(int xla)
    • jj_2_218

      private boolean jj_2_218(int xla)
    • jj_2_219

      private boolean jj_2_219(int xla)
    • jj_2_220

      private boolean jj_2_220(int xla)
    • jj_2_221

      private boolean jj_2_221(int xla)
    • jj_2_222

      private boolean jj_2_222(int xla)
    • jj_2_223

      private boolean jj_2_223(int xla)
    • jj_2_224

      private boolean jj_2_224(int xla)
    • jj_2_225

      private boolean jj_2_225(int xla)
    • jj_2_226

      private boolean jj_2_226(int xla)
    • jj_2_227

      private boolean jj_2_227(int xla)
    • jj_2_228

      private boolean jj_2_228(int xla)
    • jj_2_229

      private boolean jj_2_229(int xla)
    • jj_2_230

      private boolean jj_2_230(int xla)
    • jj_2_231

      private boolean jj_2_231(int xla)
    • jj_2_232

      private boolean jj_2_232(int xla)
    • jj_2_233

      private boolean jj_2_233(int xla)
    • jj_2_234

      private boolean jj_2_234(int xla)
    • jj_2_235

      private boolean jj_2_235(int xla)
    • jj_2_236

      private boolean jj_2_236(int xla)
    • jj_2_237

      private boolean jj_2_237(int xla)
    • jj_2_238

      private boolean jj_2_238(int xla)
    • jj_2_239

      private boolean jj_2_239(int xla)
    • jj_2_240

      private boolean jj_2_240(int xla)
    • jj_2_241

      private boolean jj_2_241(int xla)
    • jj_2_242

      private boolean jj_2_242(int xla)
    • jj_2_243

      private boolean jj_2_243(int xla)
    • jj_2_244

      private boolean jj_2_244(int xla)
    • jj_2_245

      private boolean jj_2_245(int xla)
    • jj_2_246

      private boolean jj_2_246(int xla)
    • jj_2_247

      private boolean jj_2_247(int xla)
    • jj_2_248

      private boolean jj_2_248(int xla)
    • jj_2_249

      private boolean jj_2_249(int xla)
    • jj_2_250

      private boolean jj_2_250(int xla)
    • jj_2_251

      private boolean jj_2_251(int xla)
    • jj_2_252

      private boolean jj_2_252(int xla)
    • jj_2_253

      private boolean jj_2_253(int xla)
    • jj_2_254

      private boolean jj_2_254(int xla)
    • jj_2_255

      private boolean jj_2_255(int xla)
    • jj_2_256

      private boolean jj_2_256(int xla)
    • jj_2_257

      private boolean jj_2_257(int xla)
    • jj_2_258

      private boolean jj_2_258(int xla)
    • jj_2_259

      private boolean jj_2_259(int xla)
    • jj_2_260

      private boolean jj_2_260(int xla)
    • jj_2_261

      private boolean jj_2_261(int xla)
    • jj_2_262

      private boolean jj_2_262(int xla)
    • jj_2_263

      private boolean jj_2_263(int xla)
    • jj_2_264

      private boolean jj_2_264(int xla)
    • jj_2_265

      private boolean jj_2_265(int xla)
    • jj_2_266

      private boolean jj_2_266(int xla)
    • jj_2_267

      private boolean jj_2_267(int xla)
    • jj_2_268

      private boolean jj_2_268(int xla)
    • jj_2_269

      private boolean jj_2_269(int xla)
    • jj_2_270

      private boolean jj_2_270(int xla)
    • jj_2_271

      private boolean jj_2_271(int xla)
    • jj_2_272

      private boolean jj_2_272(int xla)
    • jj_2_273

      private boolean jj_2_273(int xla)
    • jj_2_274

      private boolean jj_2_274(int xla)
    • jj_2_275

      private boolean jj_2_275(int xla)
    • jj_2_276

      private boolean jj_2_276(int xla)
    • jj_2_277

      private boolean jj_2_277(int xla)
    • jj_2_278

      private boolean jj_2_278(int xla)
    • jj_2_279

      private boolean jj_2_279(int xla)
    • jj_2_280

      private boolean jj_2_280(int xla)
    • jj_2_281

      private boolean jj_2_281(int xla)
    • jj_2_282

      private boolean jj_2_282(int xla)
    • jj_2_283

      private boolean jj_2_283(int xla)
    • jj_2_284

      private boolean jj_2_284(int xla)
    • jj_2_285

      private boolean jj_2_285(int xla)
    • jj_2_286

      private boolean jj_2_286(int xla)
    • jj_2_287

      private boolean jj_2_287(int xla)
    • jj_2_288

      private boolean jj_2_288(int xla)
    • jj_2_289

      private boolean jj_2_289(int xla)
    • jj_2_290

      private boolean jj_2_290(int xla)
    • jj_2_291

      private boolean jj_2_291(int xla)
    • jj_2_292

      private boolean jj_2_292(int xla)
    • jj_2_293

      private boolean jj_2_293(int xla)
    • jj_2_294

      private boolean jj_2_294(int xla)
    • jj_2_295

      private boolean jj_2_295(int xla)
    • jj_2_296

      private boolean jj_2_296(int xla)
    • jj_2_297

      private boolean jj_2_297(int xla)
    • jj_2_298

      private boolean jj_2_298(int xla)
    • jj_2_299

      private boolean jj_2_299(int xla)
    • jj_2_300

      private boolean jj_2_300(int xla)
    • jj_2_301

      private boolean jj_2_301(int xla)
    • jj_2_302

      private boolean jj_2_302(int xla)
    • jj_2_303

      private boolean jj_2_303(int xla)
    • jj_2_304

      private boolean jj_2_304(int xla)
    • jj_2_305

      private boolean jj_2_305(int xla)
    • jj_2_306

      private boolean jj_2_306(int xla)
    • jj_2_307

      private boolean jj_2_307(int xla)
    • jj_2_308

      private boolean jj_2_308(int xla)
    • jj_2_309

      private boolean jj_2_309(int xla)
    • jj_2_310

      private boolean jj_2_310(int xla)
    • jj_2_311

      private boolean jj_2_311(int xla)
    • jj_2_312

      private boolean jj_2_312(int xla)
    • jj_2_313

      private boolean jj_2_313(int xla)
    • jj_2_314

      private boolean jj_2_314(int xla)
    • jj_2_315

      private boolean jj_2_315(int xla)
    • jj_2_316

      private boolean jj_2_316(int xla)
    • jj_2_317

      private boolean jj_2_317(int xla)
    • jj_2_318

      private boolean jj_2_318(int xla)
    • jj_2_319

      private boolean jj_2_319(int xla)
    • jj_2_320

      private boolean jj_2_320(int xla)
    • jj_2_321

      private boolean jj_2_321(int xla)
    • jj_2_322

      private boolean jj_2_322(int xla)
    • jj_2_323

      private boolean jj_2_323(int xla)
    • jj_2_324

      private boolean jj_2_324(int xla)
    • jj_2_325

      private boolean jj_2_325(int xla)
    • jj_2_326

      private boolean jj_2_326(int xla)
    • jj_2_327

      private boolean jj_2_327(int xla)
    • jj_2_328

      private boolean jj_2_328(int xla)
    • jj_2_329

      private boolean jj_2_329(int xla)
    • jj_2_330

      private boolean jj_2_330(int xla)
    • jj_2_331

      private boolean jj_2_331(int xla)
    • jj_2_332

      private boolean jj_2_332(int xla)
    • jj_2_333

      private boolean jj_2_333(int xla)
    • jj_2_334

      private boolean jj_2_334(int xla)
    • jj_2_335

      private boolean jj_2_335(int xla)
    • jj_2_336

      private boolean jj_2_336(int xla)
    • jj_2_337

      private boolean jj_2_337(int xla)
    • jj_2_338

      private boolean jj_2_338(int xla)
    • jj_2_339

      private boolean jj_2_339(int xla)
    • jj_2_340

      private boolean jj_2_340(int xla)
    • jj_2_341

      private boolean jj_2_341(int xla)
    • jj_2_342

      private boolean jj_2_342(int xla)
    • jj_2_343

      private boolean jj_2_343(int xla)
    • jj_2_344

      private boolean jj_2_344(int xla)
    • jj_2_345

      private boolean jj_2_345(int xla)
    • jj_2_346

      private boolean jj_2_346(int xla)
    • jj_2_347

      private boolean jj_2_347(int xla)
    • jj_2_348

      private boolean jj_2_348(int xla)
    • jj_2_349

      private boolean jj_2_349(int xla)
    • jj_2_350

      private boolean jj_2_350(int xla)
    • jj_2_351

      private boolean jj_2_351(int xla)
    • jj_2_352

      private boolean jj_2_352(int xla)
    • jj_2_353

      private boolean jj_2_353(int xla)
    • jj_2_354

      private boolean jj_2_354(int xla)
    • jj_2_355

      private boolean jj_2_355(int xla)
    • jj_2_356

      private boolean jj_2_356(int xla)
    • jj_2_357

      private boolean jj_2_357(int xla)
    • jj_2_358

      private boolean jj_2_358(int xla)
    • jj_2_359

      private boolean jj_2_359(int xla)
    • jj_2_360

      private boolean jj_2_360(int xla)
    • jj_2_361

      private boolean jj_2_361(int xla)
    • jj_2_362

      private boolean jj_2_362(int xla)
    • jj_2_363

      private boolean jj_2_363(int xla)
    • jj_2_364

      private boolean jj_2_364(int xla)
    • jj_2_365

      private boolean jj_2_365(int xla)
    • jj_2_366

      private boolean jj_2_366(int xla)
    • jj_2_367

      private boolean jj_2_367(int xla)
    • jj_2_368

      private boolean jj_2_368(int xla)
    • jj_2_369

      private boolean jj_2_369(int xla)
    • jj_2_370

      private boolean jj_2_370(int xla)
    • jj_2_371

      private boolean jj_2_371(int xla)
    • jj_3_156

      private boolean jj_3_156()
    • jj_3R_GroupingSet_3064_5_199

      private boolean jj_3R_GroupingSet_3064_5_199()
    • jj_3_158

      private boolean jj_3_158()
    • jj_3_157

      private boolean jj_3_157()
    • jj_3_155

      private boolean jj_3_155()
    • jj_3_160

      private boolean jj_3_160()
    • jj_3_346

      private boolean jj_3_346()
    • jj_3R_OracleHierarchicalQueryClause_3009_34_814

      private boolean jj_3R_OracleHierarchicalQueryClause_3009_34_814()
    • jj_3_159

      private boolean jj_3_159()
    • jj_3R_OracleHierarchicalQueryClause_3002_34_813

      private boolean jj_3R_OracleHierarchicalQueryClause_3002_34_813()
    • jj_3R_GroupByColumnReferences_3031_5_162

      private boolean jj_3R_GroupByColumnReferences_3031_5_162()
    • jj_3_154

      private boolean jj_3_154()
    • jj_3R_Drop_6088_5_667

      private boolean jj_3R_Drop_6088_5_667()
    • jj_3R_OracleHierarchicalQueryClause_3008_9_397

      private boolean jj_3R_OracleHierarchicalQueryClause_3008_9_397()
    • jj_3R_OracleHierarchicalQueryClause_3000_9_396

      private boolean jj_3R_OracleHierarchicalQueryClause_3000_9_396()
    • jj_3R_OracleHierarchicalQueryClause_2999_5_160

      private boolean jj_3R_OracleHierarchicalQueryClause_2999_5_160()
    • jj_3R_WhereClause_2989_5_159

      private boolean jj_3R_WhereClause_2989_5_159()
    • jj_3_345

      private boolean jj_3_345()
    • jj_3R_KSQLWindowClause_2968_9_395

      private boolean jj_3R_KSQLWindowClause_2968_9_395()
    • jj_3R_KSQLWindowClause_2964_9_394

      private boolean jj_3R_KSQLWindowClause_2964_9_394()
    • jj_3R_KSQLWindowClause_2958_9_393

      private boolean jj_3R_KSQLWindowClause_2958_9_393()
    • jj_3R_AList_5998_38_822

      private boolean jj_3R_AList_5998_38_822()
    • jj_3R_ColumnsNamesList_6026_5_122

      private boolean jj_3R_ColumnsNamesList_6026_5_122()
    • jj_3R_KSQLWindowClause_2950_5_158

      private boolean jj_3R_KSQLWindowClause_2950_5_158()
    • jj_3R_JoinerExpression_2863_83_752

      private boolean jj_3R_JoinerExpression_2863_83_752()
    • jj_3R_ColumnsNamesListItem_6013_2_360

      private boolean jj_3R_ColumnsNamesListItem_6013_2_360()
    • jj_3R_AList_5997_12_737

      private boolean jj_3R_AList_5997_12_737()
    • jj_3R_AList_5998_10_821

      private boolean jj_3R_AList_5998_10_821()
    • jj_3R_AList_5998_9_791

      private boolean jj_3R_AList_5998_9_791()
    • jj_3R_AList_5996_10_736

      private boolean jj_3R_AList_5996_10_736()
    • jj_3_343

      private boolean jj_3_343()
    • jj_3R_AList_5996_8_711

      private boolean jj_3R_AList_5996_8_711()
    • jj_3R_JoinWindow_2924_7_841

      private boolean jj_3R_JoinWindow_2924_7_841()
    • jj_3R_JoinerExpression_2900_31_796

      private boolean jj_3R_JoinerExpression_2900_31_796()
    • jj_3R_JoinWindow_2923_5_824

      private boolean jj_3R_JoinWindow_2923_5_824()
    • jj_3R_AList_5993_6_656

      private boolean jj_3R_AList_5993_6_656()
    • jj_3_152

      private boolean jj_3_152()
    • jj_3R_JoinerExpression_2898_25_198

      private boolean jj_3R_JoinerExpression_2898_25_198()
    • jj_3R_JoinerExpression_2882_40_627

      private boolean jj_3R_JoinerExpression_2882_40_627()
    • jj_3R_JoinerExpression_2893_27_421

      private boolean jj_3R_JoinerExpression_2893_27_421()
    • jj_3R_JoinerExpression_2893_25_197

      private boolean jj_3R_JoinerExpression_2893_25_197()
    • jj_3R_RowMovement_5981_5_713

      private boolean jj_3R_RowMovement_5981_5_713()
    • jj_3R_RowMovement_5979_5_712

      private boolean jj_3R_RowMovement_5979_5_712()
    • jj_3R_JoinerExpression_2863_48_751

      private boolean jj_3R_JoinerExpression_2863_48_751()
    • jj_3R_JoinerExpression_2863_48_721

      private boolean jj_3R_JoinerExpression_2863_48_721()
    • jj_3R_RowMovement_5978_3_658

      private boolean jj_3R_RowMovement_5978_3_658()
    • jj_3R_CreateParameter_5967_9_540

      private boolean jj_3R_CreateParameter_5967_9_540()
    • jj_3R_CreateParameter_5965_9_539

      private boolean jj_3R_CreateParameter_5965_9_539()
    • jj_3_153

      private boolean jj_3_153()
    • jj_3R_CreateParameter_5963_9_538

      private boolean jj_3R_CreateParameter_5963_9_538()
    • jj_3R_CreateParameter_5956_15_710

      private boolean jj_3R_CreateParameter_5956_15_710()
    • jj_3R_CreateParameter_5961_9_537

      private boolean jj_3R_CreateParameter_5961_9_537()
    • jj_3R_CreateParameter_5956_13_655

      private boolean jj_3R_CreateParameter_5956_13_655()
    • jj_3R_JoinerExpression_2886_9_420

      private boolean jj_3R_JoinerExpression_2886_9_420()
    • jj_3R_JoinerExpression_2884_9_419

      private boolean jj_3R_JoinerExpression_2884_9_419()
    • jj_3R_JoinerExpression_2880_13_626

      private boolean jj_3R_JoinerExpression_2880_13_626()
    • jj_3R_CreateParameter_5955_9_536

      private boolean jj_3R_CreateParameter_5955_9_536()
    • jj_3R_JoinerExpression_2882_9_418

      private boolean jj_3R_JoinerExpression_2882_9_418()
    • jj_3R_JoinerExpression_2880_9_417

      private boolean jj_3R_JoinerExpression_2880_9_417()
    • jj_3R_JoinerExpression_2869_17_724

      private boolean jj_3R_JoinerExpression_2869_17_724()
    • jj_3R_JoinerExpression_2876_9_625

      private boolean jj_3R_JoinerExpression_2876_9_625()
    • jj_3R_JoinerExpression_2868_17_723

      private boolean jj_3R_JoinerExpression_2868_17_723()
    • jj_3R_CreateParameter_5947_9_535

      private boolean jj_3R_CreateParameter_5947_9_535()
    • jj_3R_JoinerExpression_2871_13_699

      private boolean jj_3R_JoinerExpression_2871_13_699()
    • jj_3R_JoinerExpression_2874_9_624

      private boolean jj_3R_JoinerExpression_2874_9_624()
    • jj_3R_JoinerExpression_2866_17_722

      private boolean jj_3R_JoinerExpression_2866_17_722()
    • jj_3R_CreateParameter_5931_23_316

      private boolean jj_3R_CreateParameter_5931_23_316()
    • jj_3R_JoinerExpression_2865_13_698

      private boolean jj_3R_JoinerExpression_2865_13_698()
    • jj_3R_JoinerExpression_2863_13_697

      private boolean jj_3R_JoinerExpression_2863_13_697()
    • jj_3R_CreateParameter_5934_9_534

      private boolean jj_3R_CreateParameter_5934_9_534()
    • jj_3R_JoinerExpression_2862_9_416

      private boolean jj_3R_JoinerExpression_2862_9_416()
    • jj_3R_JoinerExpression_2862_9_623

      private boolean jj_3R_JoinerExpression_2862_9_623()
    • jj_3R_CreateParameter_5924_17_654

      private boolean jj_3R_CreateParameter_5924_17_654()
    • jj_3_344

      private boolean jj_3_344()
    • jj_3R_JoinerExpression_2859_7_415

      private boolean jj_3R_JoinerExpression_2859_7_415()
    • jj_3R_JoinerExpression_2858_7_414

      private boolean jj_3R_JoinerExpression_2858_7_414()
    • jj_3R_JoinerExpression_2858_5_196

      private boolean jj_3R_JoinerExpression_2858_5_196()
    • jj_3R_CreateParameter_5919_9_533

      private boolean jj_3R_CreateParameter_5919_9_533()
    • jj_3R_CreateParameter_5914_9_532

      private boolean jj_3R_CreateParameter_5914_9_532()
    • jj_3R_FromItem_2796_54_193

      private boolean jj_3R_FromItem_2796_54_193()
    • jj_3R_CreateParameter_5912_5_302

      private boolean jj_3R_CreateParameter_5912_5_302()
    • jj_3R_JoinHint_2833_5_700

      private boolean jj_3R_JoinHint_2833_5_700()
    • jj_3_151

      private boolean jj_3_151()
    • jj_3R_JoinsList_2822_5_156

      private boolean jj_3R_JoinsList_2822_5_156()
    • jj_3R_AlterView_5893_5_690

      private boolean jj_3R_AlterView_5893_5_690()
    • jj_3R_FromItem_2805_13_195

      private boolean jj_3R_FromItem_2805_13_195()
    • jj_3_148

      private boolean jj_3_148()
    • jj_3R_FromItem_2800_13_194

      private boolean jj_3R_FromItem_2800_13_194()
    • jj_3_150

      private boolean jj_3_150()
    • jj_3_149

      private boolean jj_3_149()
    • jj_3_143

      private boolean jj_3_143()
    • jj_3_140

      private boolean jj_3_140()
    • jj_3_147

      private boolean jj_3_147()
    • jj_3_139

      private boolean jj_3_139()
    • jj_3_146

      private boolean jj_3_146()
    • jj_3_145

      private boolean jj_3_145()
    • jj_3R_FromItem_2790_9_392

      private boolean jj_3R_FromItem_2790_9_392()
    • jj_3_141

      private boolean jj_3_141()
    • jj_3_138

      private boolean jj_3_138()
    • jj_3_144

      private boolean jj_3_144()
    • jj_3R_FromItem_2782_9_391

      private boolean jj_3R_FromItem_2782_9_391()
    • jj_3_142

      private boolean jj_3_142()
    • jj_3R_FromItem_2778_9_390

      private boolean jj_3R_FromItem_2778_9_390()
    • jj_3R_FromItem_2777_5_157

      private boolean jj_3R_FromItem_2777_5_157()
    • jj_3R_ColDataType_5768_76_835

      private boolean jj_3R_ColDataType_5768_76_835()
    • jj_3_342

      private boolean jj_3_342()
    • jj_3R_CreateView_5829_11_663

      private boolean jj_3R_CreateView_5829_11_663()
    • jj_3_341

      private boolean jj_3_341()
    • jj_3R_CreateView_5828_11_662

      private boolean jj_3R_CreateView_5828_11_662()
    • jj_3R_ParenthesedFromItem_2756_11_410

      private boolean jj_3R_ParenthesedFromItem_2756_11_410()
    • jj_3R_CreateView_5831_7_558

      private boolean jj_3R_CreateView_5831_7_558()
    • jj_3R_CreateView_5827_9_557

      private boolean jj_3R_CreateView_5827_9_557()
    • jj_3R_CreateView_5827_9_661

      private boolean jj_3R_CreateView_5827_9_661()
    • jj_3R_CreateView_5823_11_660

      private boolean jj_3R_CreateView_5823_11_660()
    • jj_3R_CreateView_5825_7_556

      private boolean jj_3R_CreateView_5825_7_556()
    • jj_3R_CreateView_5822_9_555

      private boolean jj_3R_CreateView_5822_9_555()
    • jj_3R_CreateView_5822_9_659

      private boolean jj_3R_CreateView_5822_9_659()
    • jj_3R_ParenthesedFromItem_2754_5_190

      private boolean jj_3R_ParenthesedFromItem_2754_5_190()
    • jj_3R_CreateView_5820_5_327

      private boolean jj_3R_CreateView_5820_5_327()
    • jj_3_336

      private boolean jj_3_336()
    • jj_3R_IntoClause_2741_5_155

      private boolean jj_3R_IntoClause_2741_5_155()
    • jj_3R_ColDataType_5767_40_542

      private boolean jj_3R_ColDataType_5767_40_542()
    • jj_3R_ColDataType_5767_38_315

      private boolean jj_3R_ColDataType_5767_38_315()
    • jj_3_137

      private boolean jj_3_137()
    • jj_3R_UnPivot_2717_9_620

      private boolean jj_3R_UnPivot_2717_9_620()
    • jj_3R_UnPivot_2718_7_621

      private boolean jj_3R_UnPivot_2718_7_621()
    • jj_3R_UnPivot_2717_7_409

      private boolean jj_3R_UnPivot_2717_7_409()
    • jj_3R_UnPivot_2716_5_188

      private boolean jj_3R_UnPivot_2716_5_188()
    • jj_3_338

      private boolean jj_3_338()
    • jj_3R_Analyze_5785_5_668

      private boolean jj_3R_Analyze_5785_5_668()
    • jj_3_331

      private boolean jj_3_331()
    • jj_3_340

      private boolean jj_3_340()
    • jj_3_339

      private boolean jj_3_339()
    • jj_3R_PivotXml_2693_9_747

      private boolean jj_3R_PivotXml_2693_9_747()
    • jj_3_337

      private boolean jj_3_337()
    • jj_3_136

      private boolean jj_3_136()
    • jj_3R_PivotXml_2691_9_746

      private boolean jj_3R_PivotXml_2691_9_746()
    • jj_3_135

      private boolean jj_3_135()
    • jj_3R_ColDataType_5764_3_523

      private boolean jj_3R_ColDataType_5764_3_523()
    • jj_3R_ColDataType_5756_11_657

      private boolean jj_3R_ColDataType_5756_11_657()
    • jj_3_335

      private boolean jj_3_335()
    • jj_3R_PivotXml_2686_5_192

      private boolean jj_3R_PivotXml_2686_5_192()
    • jj_3_330

      private boolean jj_3_330()
    • jj_3R_ColDataType_5759_3_522

      private boolean jj_3R_ColDataType_5759_3_522()
    • jj_3R_ColDataType_5733_15_314

      private boolean jj_3R_ColDataType_5733_15_314()
    • jj_3R_ColDataType_5732_15_313

      private boolean jj_3R_ColDataType_5732_15_313()
    • jj_3R_ColDataType_5738_9_520

      private boolean jj_3R_ColDataType_5738_9_520()
    • jj_3_334

      private boolean jj_3_334()
    • jj_3R_ColDataType_5731_13_312

      private boolean jj_3R_ColDataType_5731_13_312()
    • jj_3_134

      private boolean jj_3_134()
    • jj_3R_ColDataType_5740_3_521

      private boolean jj_3R_ColDataType_5740_3_521()
    • jj_3R_Pivot_2662_7_739

      private boolean jj_3R_Pivot_2662_7_739()
    • jj_3_333

      private boolean jj_3_333()
    • jj_3_133

      private boolean jj_3_133()
    • jj_3R_Pivot_2658_5_187

      private boolean jj_3R_Pivot_2658_5_187()
    • jj_3R_ColDataType_5723_5_277

      private boolean jj_3R_ColDataType_5723_5_277()
    • jj_3_332

      private boolean jj_3_332()
    • jj_3R_PivotMultiInItems_2644_5_795

      private boolean jj_3R_PivotMultiInItems_2644_5_795()
    • jj_3R_PivotMultiInItems_2643_4_771

      private boolean jj_3R_PivotMultiInItems_2643_4_771()
    • jj_3R_ExpressionListItem_2633_7_823

      private boolean jj_3R_ExpressionListItem_2633_7_823()
    • jj_3R_ExpressionListItem_2632_5_794

      private boolean jj_3R_ExpressionListItem_2632_5_794()
    • jj_3R_PivotFunctionItems_2622_7_770

      private boolean jj_3R_PivotFunctionItems_2622_7_770()
    • jj_3R_PivotFunctionItems_2621_5_738

      private boolean jj_3R_PivotFunctionItems_2621_5_738()
    • jj_3_329

      private boolean jj_3_329()
    • jj_3R_PivotForColumns_2610_9_745

      private boolean jj_3R_PivotForColumns_2610_9_745()
    • jj_3R_PivotForColumns_2608_9_744

      private boolean jj_3R_PivotForColumns_2608_9_744()
    • jj_3R_PivotForColumns_2607_5_720

      private boolean jj_3R_PivotForColumns_2607_5_720()
    • jj_3R_CreateTable_5674_7_554

      private boolean jj_3R_CreateTable_5674_7_554()
    • jj_3R_CreateTable_5669_7_552

      private boolean jj_3R_CreateTable_5669_7_552()
    • jj_3R_CreateTable_5671_5_553

      private boolean jj_3R_CreateTable_5671_5_553()
    • jj_3R_FunctionItem_2597_7_793

      private boolean jj_3R_FunctionItem_2597_7_793()
    • jj_3R_CreateTable_5668_7_551

      private boolean jj_3R_CreateTable_5668_7_551()
    • jj_3R_FunctionItem_2596_5_769

      private boolean jj_3R_FunctionItem_2596_5_769()
    • jj_3_328

      private boolean jj_3_328()
    • jj_3R_Alias_2536_58_772

      private boolean jj_3R_Alias_2536_58_772()
    • jj_3R_SQLServerHints_2556_31_750

      private boolean jj_3R_SQLServerHints_2556_31_750()
    • jj_3R_MySQLIndexHint_2583_3_748

      private boolean jj_3R_MySQLIndexHint_2583_3_748()
    • jj_3R_CreateTable_5620_37_309

      private boolean jj_3R_CreateTable_5620_37_309()
    • jj_3_325

      private boolean jj_3_325()
    • jj_3R_CreateTable_5618_26_308

      private boolean jj_3R_CreateTable_5618_26_308()
    • jj_3R_MySQLIndexHint_2569_2_132

      private boolean jj_3R_MySQLIndexHint_2569_2_132()
    • jj_3R_Alias_2531_39_366

      private boolean jj_3R_Alias_2531_39_366()
    • jj_3_324

      private boolean jj_3_324()
    • jj_3R_Alias_2535_31_740

      private boolean jj_3R_Alias_2535_31_740()
    • jj_3_319

      private boolean jj_3_319()
    • jj_3R_SQLServerHints_2555_5_413

      private boolean jj_3R_SQLServerHints_2555_5_413()
    • jj_3_318

      private boolean jj_3_318()
    • jj_3R_SQLServerHint_2548_9_774

      private boolean jj_3R_SQLServerHint_2548_9_774()
    • jj_3R_SQLServerHint_2546_9_773

      private boolean jj_3R_SQLServerHint_2546_9_773()
    • jj_3R_SQLServerHint_2546_9_749

      private boolean jj_3R_SQLServerHint_2546_9_749()
    • jj_3R_CreateTable_5596_26_307

      private boolean jj_3R_CreateTable_5596_26_307()
    • jj_3_323

      private boolean jj_3_323()
    • jj_3R_Alias_2536_4_741

      private boolean jj_3R_Alias_2536_4_741()
    • jj_3_132

      private boolean jj_3_132()
    • jj_3R_Alias_2530_6_364

      private boolean jj_3R_Alias_2530_6_364()
    • jj_3R_Alias_2530_5_131

      private boolean jj_3R_Alias_2530_5_131()
    • jj_3R_Alias_2531_4_365

      private boolean jj_3R_Alias_2531_4_365()
    • jj_3R_CreateTable_5528_77_310

      private boolean jj_3R_CreateTable_5528_77_310()
    • jj_3_322

      private boolean jj_3_322()
    • jj_3R_AllTableColumns_2514_6_183

      private boolean jj_3R_AllTableColumns_2514_6_183()
    • jj_3R_CreateTable_5559_28_306

      private boolean jj_3R_CreateTable_5559_28_306()
    • jj_3R_CreateTable_5558_26_305

      private boolean jj_3R_CreateTable_5558_26_305()
    • jj_3R_CreateTable_5556_26_304

      private boolean jj_3R_CreateTable_5556_26_304()
    • jj_3_131

      private boolean jj_3_131()
    • jj_3_130

      private boolean jj_3_130()
    • jj_3R_AllColumns_2499_5_407

      private boolean jj_3R_AllColumns_2499_5_407()
    • jj_3_321

      private boolean jj_3_321()
    • jj_3_126

      private boolean jj_3_126()
    • jj_3_125

      private boolean jj_3_125()
    • jj_3_129

      private boolean jj_3_129()
    • jj_3_128

      private boolean jj_3_128()
    • jj_3_127

      private boolean jj_3_127()
    • jj_3_320

      private boolean jj_3_320()
    • jj_3R_SelectItem_2479_9_406

      private boolean jj_3R_SelectItem_2479_9_406()
    • jj_3R_SelectItem_2477_9_405

      private boolean jj_3R_SelectItem_2477_9_405()
    • jj_3R_WithList_2426_60_727

      private boolean jj_3R_WithList_2426_60_727()
    • jj_3R_SelectItem_2475_9_404

      private boolean jj_3R_SelectItem_2475_9_404()
    • jj_3R_SelectItem_2472_5_182

      private boolean jj_3R_SelectItem_2472_5_182()
    • jj_3R_CreateTable_5530_13_311

      private boolean jj_3R_CreateTable_5530_13_311()
    • jj_3_124

      private boolean jj_3_124()
    • jj_3_326

      private boolean jj_3_326()
    • jj_3_327

      private boolean jj_3_327()
    • jj_3_317

      private boolean jj_3_317()
    • jj_3R_SelectItemsList_2454_5_186

      private boolean jj_3R_SelectItemsList_2454_5_186()
    • jj_3R_CreateTable_5521_6_550

      private boolean jj_3R_CreateTable_5521_6_550()
    • jj_3R_CreateTable_5517_7_549

      private boolean jj_3R_CreateTable_5517_7_549()
    • jj_3R_CreateTable_5514_7_548

      private boolean jj_3R_CreateTable_5514_7_548()
    • jj_3R_WithItem_2441_8_685

      private boolean jj_3R_WithItem_2441_8_685()
    • jj_3R_WithItem_2439_8_581

      private boolean jj_3R_WithItem_2439_8_581()
    • jj_3R_CreateTable_5513_5_326

      private boolean jj_3R_CreateTable_5513_5_326()
    • jj_3R_WithItem_2439_6_333

      private boolean jj_3R_WithItem_2439_6_333()
    • jj_3R_WithList_2426_5_97

      private boolean jj_3R_WithList_2426_5_97()
    • jj_3R_SetOperationList_2366_53_619

      private boolean jj_3R_SetOperationList_2366_53_619()
    • jj_3_123

      private boolean jj_3_123()
    • jj_3_122

      private boolean jj_3_122()
    • jj_3_121

      private boolean jj_3_121()
    • jj_3_120

      private boolean jj_3_120()
    • jj_3_119

      private boolean jj_3_119()
    • jj_3R_SetOperationList_2393_7_732

      private boolean jj_3R_SetOperationList_2393_7_732()
    • jj_3R_SetOperationList_2392_7_731

      private boolean jj_3R_SetOperationList_2392_7_731()
    • jj_3R_SetOperationList_2391_7_730

      private boolean jj_3R_SetOperationList_2391_7_730()
    • jj_3R_SetOperationList_2390_7_729

      private boolean jj_3R_SetOperationList_2390_7_729()
    • jj_3R_SetOperationList_2389_7_728

      private boolean jj_3R_SetOperationList_2389_7_728()
    • jj_3_118

      private boolean jj_3_118()
    • jj_3R_SetOperationList_2381_13_180

      private boolean jj_3R_SetOperationList_2381_13_180()
    • jj_3R_SetOperationList_2379_13_179

      private boolean jj_3R_SetOperationList_2379_13_179()
    • jj_3R_SetOperationList_2377_13_178

      private boolean jj_3R_SetOperationList_2377_13_178()
    • jj_3R_SetOperationList_2373_13_177

      private boolean jj_3R_SetOperationList_2373_13_177()
    • jj_3R_SetOperationList_2366_19_403

      private boolean jj_3R_SetOperationList_2366_19_403()
    • jj_3R_SetOperationList_2366_19_618

      private boolean jj_3R_SetOperationList_2366_19_618()
    • jj_3R_SetOperationList_2371_13_176

      private boolean jj_3R_SetOperationList_2371_13_176()
    • jj_3R_SetOperationList_2369_13_175

      private boolean jj_3R_SetOperationList_2369_13_175()
    • jj_3R_SetOperationList_2364_13_174

      private boolean jj_3R_SetOperationList_2364_13_174()
    • jj_3_117

      private boolean jj_3_117()
    • jj_3R_SetOperationList_2358_5_135

      private boolean jj_3R_SetOperationList_2358_5_135()
    • jj_3R_PlainSelect_2327_25_168

      private boolean jj_3R_PlainSelect_2327_25_168()
    • jj_3_316

      private boolean jj_3_316()
    • jj_3_114

      private boolean jj_3_114()
    • jj_3_111

      private boolean jj_3_111()
    • jj_3R_PlainSelect_2328_18_169

      private boolean jj_3R_PlainSelect_2328_18_169()
    • jj_3R_ColumnDefinition_5409_5_541

      private boolean jj_3R_ColumnDefinition_5409_5_541()
    • jj_3_116

      private boolean jj_3_116()
    • jj_3R_PlainSelect_2323_15_173

      private boolean jj_3R_PlainSelect_2323_15_173()
    • jj_3_115

      private boolean jj_3_115()
    • jj_3_112

      private boolean jj_3_112()
    • jj_3R_PlainSelect_2326_11_758

      private boolean jj_3R_PlainSelect_2326_11_758()
    • jj_3R_PlainSelect_2322_15_172

      private boolean jj_3R_PlainSelect_2322_15_172()
    • jj_3R_PlainSelect_2330_7_376

      private boolean jj_3R_PlainSelect_2330_7_376()
    • jj_3R_PlainSelect_2321_15_171

      private boolean jj_3R_PlainSelect_2321_15_171()
    • jj_3_110

      private boolean jj_3_110()
    • jj_3R_PlainSelect_2320_13_170

      private boolean jj_3R_PlainSelect_2320_13_170()
    • jj_3_109

      private boolean jj_3_109()
    • jj_3_108

      private boolean jj_3_108()
    • jj_3_106

      private boolean jj_3_106()
    • jj_3_105

      private boolean jj_3_105()
    • jj_3_107

      private boolean jj_3_107()
    • jj_3_104

      private boolean jj_3_104()
    • jj_3_102

      private boolean jj_3_102()
    • jj_3_113

      private boolean jj_3_113()
    • jj_3R_PlainSelect_2316_7_375

      private boolean jj_3R_PlainSelect_2316_7_375()
    • jj_3R_CreateIndex_5379_15_301

      private boolean jj_3R_CreateIndex_5379_15_301()
    • jj_3R_PlainSelect_2315_7_374

      private boolean jj_3R_PlainSelect_2315_7_374()
    • jj_3_99

      private boolean jj_3_99()
    • jj_3R_PlainSelect_2313_7_372

      private boolean jj_3R_PlainSelect_2313_7_372()
    • jj_3R_PlainSelect_2312_7_371

      private boolean jj_3R_PlainSelect_2312_7_371()
    • jj_3R_PlainSelect_2311_7_370

      private boolean jj_3R_PlainSelect_2311_7_370()
    • jj_3R_PlainSelect_2314_4_373

      private boolean jj_3R_PlainSelect_2314_4_373()
    • jj_3_103

      private boolean jj_3_103()
    • jj_3_100

      private boolean jj_3_100()
    • jj_3R_PlainSelect_2309_7_369

      private boolean jj_3R_PlainSelect_2309_7_369()
    • jj_3_315

      private boolean jj_3_315()
    • jj_3_101

      private boolean jj_3_101()
    • jj_3R_PlainSelect_2303_7_368

      private boolean jj_3R_PlainSelect_2303_7_368()
    • jj_3_314

      private boolean jj_3_314()
    • jj_3_98

      private boolean jj_3_98()
    • jj_3_97

      private boolean jj_3_97()
    • jj_3_96

      private boolean jj_3_96()
    • jj_3_95

      private boolean jj_3_95()
    • jj_3_94

      private boolean jj_3_94()
    • jj_3_93

      private boolean jj_3_93()
    • jj_3_88

      private boolean jj_3_88()
    • jj_3R_PlainSelect_2287_15_757

      private boolean jj_3R_PlainSelect_2287_15_757()
    • jj_3_92

      private boolean jj_3_92()
    • jj_3_91

      private boolean jj_3_91()
    • jj_3_90

      private boolean jj_3_90()
    • jj_3_86

      private boolean jj_3_86()
    • jj_3R_PlainSelect_2283_11_756

      private boolean jj_3R_PlainSelect_2283_11_756()
    • jj_3_89

      private boolean jj_3_89()
    • jj_3_87

      private boolean jj_3_87()
    • jj_3_85

      private boolean jj_3_85()
    • jj_3_84

      private boolean jj_3_84()
    • jj_3R_PlainSelect_2273_9_153

      private boolean jj_3R_PlainSelect_2273_9_153()
    • jj_3R_PlainSelect_2271_9_152

      private boolean jj_3R_PlainSelect_2271_9_152()
    • jj_3_82

      private boolean jj_3_82()
    • jj_3R_PlainSelect_2269_9_151

      private boolean jj_3R_PlainSelect_2269_9_151()
    • jj_3R_PlainSelect_2267_9_150

      private boolean jj_3R_PlainSelect_2267_9_150()
    • jj_3R_PlainSelect_2262_9_149

      private boolean jj_3R_PlainSelect_2262_9_149()
    • jj_3_83

      private boolean jj_3_83()
    • jj_3_81

      private boolean jj_3_81()
    • jj_3R_ColumnNamesWithParamsList_5327_6_303

      private boolean jj_3R_ColumnNamesWithParamsList_5327_6_303()
    • jj_3_80

      private boolean jj_3_80()
    • jj_3R_PlainSelect_2250_7_367

      private boolean jj_3R_PlainSelect_2250_7_367()
    • jj_3R_PlainSelect_2248_5_133

      private boolean jj_3R_PlainSelect_2248_5_133()
    • jj_3R_TableFunction_5312_5_189

      private boolean jj_3R_TableFunction_5312_5_189()
    • jj_3R_MySQLGroupConcat_5297_10_777

      private boolean jj_3R_MySQLGroupConcat_5297_10_777()
    • jj_3R_MySQLGroupConcat_5296_10_776

      private boolean jj_3R_MySQLGroupConcat_5296_10_776()
    • jj_3R_MySQLGroupConcat_5294_9_502

      private boolean jj_3R_MySQLGroupConcat_5294_9_502()
    • jj_3R_MySQLGroupConcat_5293_5_263

      private boolean jj_3R_MySQLGroupConcat_5293_5_263()
    • jj_3R_InternalFunction_5233_60_298

      private boolean jj_3R_InternalFunction_5233_60_298()
    • jj_3R_XMLSerializeExpr_5273_19_778

      private boolean jj_3R_XMLSerializeExpr_5273_19_778()
    • jj_3R_LateralSubSelect_2205_5_615

      private boolean jj_3R_LateralSubSelect_2205_5_615()
    • jj_3R_XMLSerializeExpr_5269_5_638

      private boolean jj_3R_XMLSerializeExpr_5269_5_638()
    • jj_3_79

      private boolean jj_3_79()
    • jj_3_77

      private boolean jj_3_77()
    • jj_3R_LateralViews_2192_7_812

      private boolean jj_3R_LateralViews_2192_7_812()
    • jj_3_312

      private boolean jj_3_312()
    • jj_3R_LateralViews_2191_5_786

      private boolean jj_3R_LateralViews_2191_5_786()
    • jj_3_76

      private boolean jj_3_76()
    • jj_3R_ForClause_2170_21_146

      private boolean jj_3R_ForClause_2170_21_146()
    • jj_3R_InternalFunction_5247_13_735

      private boolean jj_3R_InternalFunction_5247_13_735()
    • jj_3_313

      private boolean jj_3_313()
    • jj_3R_InternalFunction_5245_13_734

      private boolean jj_3R_InternalFunction_5245_13_734()
    • jj_3R_ForClause_2159_27_145

      private boolean jj_3R_ForClause_2159_27_145()
    • jj_3R_ForClause_2158_27_144

      private boolean jj_3R_ForClause_2158_27_144()
    • jj_3_78

      private boolean jj_3_78()
    • jj_3_73

      private boolean jj_3_73()
    • jj_3R_ForClause_2156_25_143

      private boolean jj_3R_ForClause_2156_25_143()
    • jj_3_74

      private boolean jj_3_74()
    • jj_3R_InternalFunction_5229_19_297

      private boolean jj_3R_InternalFunction_5229_19_297()
    • jj_3R_InternalFunction_5235_13_299

      private boolean jj_3R_InternalFunction_5235_13_299()
    • jj_3R_InternalFunction_5241_7_709

      private boolean jj_3R_InternalFunction_5241_7_709()
    • jj_3R_InternalFunction_5228_19_296

      private boolean jj_3R_InternalFunction_5228_19_296()
    • jj_3_75

      private boolean jj_3_75()
    • jj_3_70

      private boolean jj_3_70()
    • jj_3_71

      private boolean jj_3_71()
    • jj_3_310

      private boolean jj_3_310()
    • jj_3R_InternalFunction_5238_8_703

      private boolean jj_3R_InternalFunction_5238_8_703()
    • jj_3R_ForClause_2165_9_399

      private boolean jj_3R_ForClause_2165_9_399()
    • jj_3R_InternalFunction_5227_17_295

      private boolean jj_3R_InternalFunction_5227_17_295()
    • jj_3R_ForClause_2145_27_142

      private boolean jj_3R_ForClause_2145_27_142()
    • jj_3R_ForClause_2143_25_141

      private boolean jj_3R_ForClause_2143_25_141()
    • jj_3_69

      private boolean jj_3_69()
    • jj_3_309

      private boolean jj_3_309()
    • jj_3R_ForClause_2151_13_817

      private boolean jj_3R_ForClause_2151_13_817()
    • jj_3_311

      private boolean jj_3_311()
    • jj_3_72

      private boolean jj_3_72()
    • jj_3R_ForClause_2133_27_140

      private boolean jj_3R_ForClause_2133_27_140()
    • jj_3R_ForClause_2132_27_139

      private boolean jj_3R_ForClause_2132_27_139()
    • jj_3R_ForClause_2130_27_138

      private boolean jj_3R_ForClause_2130_27_138()
    • jj_3R_InternalFunction_5221_5_635

      private boolean jj_3R_InternalFunction_5221_5_635()
    • jj_3R_ForClause_2128_25_137

      private boolean jj_3R_ForClause_2128_25_137()
    • jj_3_67

      private boolean jj_3_67()
    • jj_3R_ForClause_2138_13_816

      private boolean jj_3R_ForClause_2138_13_816()
    • jj_3_68

      private boolean jj_3_68()
    • jj_3_308

      private boolean jj_3_308()
    • jj_3R_ForClause_2124_19_837

      private boolean jj_3R_ForClause_2124_19_837()
    • jj_3R_SimpleFunction_5199_9_652

      private boolean jj_3R_SimpleFunction_5199_9_652()
    • jj_3R_ForClause_2123_13_815

      private boolean jj_3R_ForClause_2123_13_815()
    • jj_3_306

      private boolean jj_3_306()
    • jj_3R_SimpleFunction_5197_9_651

      private boolean jj_3R_SimpleFunction_5197_9_651()
    • jj_3_305

      private boolean jj_3_305()
    • jj_3_304

      private boolean jj_3_304()
    • jj_3R_ForClause_2121_9_398

      private boolean jj_3R_ForClause_2121_9_398()
    • jj_3R_SimpleFunction_5193_7_529

      private boolean jj_3R_SimpleFunction_5193_7_529()
    • jj_3_302

      private boolean jj_3_302()
    • jj_3R_SimpleFunction_5182_13_294

      private boolean jj_3R_SimpleFunction_5182_13_294()
    • jj_3R_ForClause_2117_5_164

      private boolean jj_3R_ForClause_2117_5_164()
    • jj_3R_SimpleFunction_5180_13_293

      private boolean jj_3R_SimpleFunction_5180_13_293()
    • jj_3R_SimpleFunction_5178_13_292

      private boolean jj_3R_SimpleFunction_5178_13_292()
    • jj_3R_LateralView_2091_28_836

      private boolean jj_3R_LateralView_2091_28_836()
    • jj_3_303

      private boolean jj_3_303()
    • jj_3R_SimpleFunction_5174_13_291

      private boolean jj_3R_SimpleFunction_5174_13_291()
    • jj_3R_SimpleFunction_5172_13_290

      private boolean jj_3R_SimpleFunction_5172_13_290()
    • jj_3_307

      private boolean jj_3_307()
    • jj_3R_SimpleFunction_5168_5_287

      private boolean jj_3R_SimpleFunction_5168_5_287()
    • jj_3_66

      private boolean jj_3_66()
    • jj_3R_LateralView_2091_5_811

      private boolean jj_3R_LateralView_2091_5_811()
    • jj_3_300

      private boolean jj_3_300()
    • jj_3_301

      private boolean jj_3_301()
    • jj_3R_SpecialStringFunctionWithNamedParameters_5143_13_530

      private boolean jj_3R_SpecialStringFunctionWithNamedParameters_5143_13_530()
    • jj_3_65

      private boolean jj_3_65()
    • jj_3R_ParenthesedSelect_2072_5_118

      private boolean jj_3R_ParenthesedSelect_2072_5_118()
    • jj_3_64

      private boolean jj_3_64()
    • jj_3R_SpecialStringFunctionWithNamedParameters_5139_9_288

      private boolean jj_3R_SpecialStringFunctionWithNamedParameters_5139_9_288()
    • jj_3_63

      private boolean jj_3_63()
    • jj_3_298

      private boolean jj_3_298()
    • jj_3R_Function_5123_11_474

      private boolean jj_3R_Function_5123_11_474()
    • jj_3_299

      private boolean jj_3_299()
    • jj_3R_TableStatement_2056_5_664

      private boolean jj_3R_TableStatement_2056_5_664()
    • jj_3R_Function_5121_11_473

      private boolean jj_3R_Function_5121_11_473()
    • jj_3R_Function_5120_9_472

      private boolean jj_3R_Function_5120_9_472()
    • jj_3_62

      private boolean jj_3_62()
    • jj_3_61

      private boolean jj_3_61()
    • jj_3_60

      private boolean jj_3_60()
    • jj_3_59

      private boolean jj_3_59()
    • jj_3R_Function_5119_5_234

      private boolean jj_3R_Function_5119_5_234()
    • jj_3_58

      private boolean jj_3_58()
    • jj_3R_Select_2040_7_355

      private boolean jj_3R_Select_2040_7_355()
    • jj_3R_Select_2039_7_354

      private boolean jj_3R_Select_2039_7_354()
    • jj_3R_Select_2038_7_353

      private boolean jj_3R_Select_2038_7_353()
    • jj_3R_Select_2037_7_352

      private boolean jj_3R_Select_2037_7_352()
    • jj_3R_Select_2035_7_351

      private boolean jj_3R_Select_2035_7_351()
    • jj_3_56

      private boolean jj_3_56()
    • jj_3_57

      private boolean jj_3_57()
    • jj_3_55

      private boolean jj_3_55()
    • jj_3R_FullTextSearch_5099_9_782

      private boolean jj_3R_FullTextSearch_5099_9_782()
    • jj_3_54

      private boolean jj_3_54()
    • jj_3R_FullTextSearch_5096_7_781

      private boolean jj_3R_FullTextSearch_5096_7_781()
    • jj_3R_Select_2025_7_350

      private boolean jj_3R_Select_2025_7_350()
    • jj_3R_FullTextSearch_5094_7_780

      private boolean jj_3R_FullTextSearch_5094_7_780()
    • jj_3R_Select_2025_5_114

      private boolean jj_3R_Select_2025_5_114()
    • jj_3R_FullTextSearch_5092_7_779

      private boolean jj_3R_FullTextSearch_5092_7_779()
    • jj_3R_FullTextSearch_5089_5_266

      private boolean jj_3R_FullTextSearch_5089_5_266()
    • jj_3R_SelectWithWithItems_2009_5_334

      private boolean jj_3R_SelectWithWithItems_2009_5_334()
    • jj_3_297

      private boolean jj_3_297()
    • jj_3R_Execute_5067_11_716

      private boolean jj_3R_Execute_5067_11_716()
    • jj_3R_Execute_5066_11_715

      private boolean jj_3R_Execute_5066_11_715()
    • jj_3_53

      private boolean jj_3_53()
    • jj_3_52

      private boolean jj_3_52()
    • jj_3R_Execute_5065_6_714

      private boolean jj_3R_Execute_5065_6_714()
    • jj_3R_Execute_5065_5_670

      private boolean jj_3R_Execute_5065_5_670()
    • jj_3R_SampleClause_1983_15_622

      private boolean jj_3R_SampleClause_1983_15_622()
    • jj_3R_SampleClause_1986_9_412

      private boolean jj_3R_SampleClause_1986_9_412()
    • jj_3R_SampleClause_1980_9_411

      private boolean jj_3R_SampleClause_1980_9_411()
    • jj_3R_SampleClause_1979_5_191

      private boolean jj_3R_SampleClause_1979_5_191()
    • jj_3R_Number_1960_9_743

      private boolean jj_3R_Number_1960_9_743()
    • jj_3R_Number_1958_9_742

      private boolean jj_3R_Number_1958_9_742()
    • jj_3R_RowConstructor_5033_5_241

      private boolean jj_3R_RowConstructor_5033_5_241()
    • jj_3R_Number_1957_5_719

      private boolean jj_3R_Number_1957_5_719()
    • jj_3_296

      private boolean jj_3_296()
    • jj_3R_WhenThenSearchCondition_5018_9_825

      private boolean jj_3R_WhenThenSearchCondition_5018_9_825()
    • jj_3_51

      private boolean jj_3_51()
    • jj_3_50

      private boolean jj_3_50()
    • jj_3R_TableWithAliasAndMysqlIndexHint_1945_5_585

      private boolean jj_3R_TableWithAliasAndMysqlIndexHint_1945_5_585()
    • jj_3R_WhenThenSearchCondition_5015_5_641

      private boolean jj_3R_WhenThenSearchCondition_5015_5_641()
    • jj_3_295

      private boolean jj_3_295()
    • jj_3_49

      private boolean jj_3_49()
    • jj_3R_CaseWhenExpression_4995_15_797

      private boolean jj_3R_CaseWhenExpression_4995_15_797()
    • jj_3R_TableWithAlias_1933_5_125

      private boolean jj_3R_TableWithAlias_1933_5_125()
    • jj_3R_CaseWhenExpression_4993_9_775

      private boolean jj_3R_CaseWhenExpression_4993_9_775()
    • jj_3R_CaseWhenExpression_4991_7_498

      private boolean jj_3R_CaseWhenExpression_4991_7_498()
    • jj_3_294

      private boolean jj_3_294()
    • jj_3R_ExtractExpression_4927_70_501

      private boolean jj_3R_ExtractExpression_4927_70_501()
    • jj_3R_Table_1918_5_167

      private boolean jj_3R_Table_1918_5_167()
    • jj_3R_CaseWhenExpression_4989_5_259

      private boolean jj_3R_CaseWhenExpression_4989_5_259()
    • jj_3R_RelObjectNameExt2_1908_7_363

      private boolean jj_3R_RelObjectNameExt2_1908_7_363()
    • jj_3R_RelObjectNameExt2_1908_5_129

      private boolean jj_3R_RelObjectNameExt2_1908_5_129()
    • jj_3R_CastExpression_4966_15_808

      private boolean jj_3R_CastExpression_4966_15_808()
    • jj_3R_CastExpression_4970_9_783

      private boolean jj_3R_CastExpression_4970_9_783()
    • jj_3R_WindowOffset_4908_70_853

      private boolean jj_3R_WindowOffset_4908_70_853()
    • jj_3R_IntervalExpression_4753_225_511

      private boolean jj_3R_IntervalExpression_4753_225_511()
    • jj_3_293

      private boolean jj_3_293()
    • jj_3R_RelObjectNameExt_1886_7_600

      private boolean jj_3R_RelObjectNameExt_1886_7_600()
    • jj_3_289

      private boolean jj_3_289()
    • jj_3R_RelObjectNameExt_1886_5_346

      private boolean jj_3R_RelObjectNameExt_1886_5_346()
    • jj_3R_CastExpression_4946_5_268

      private boolean jj_3R_CastExpression_4946_5_268()
    • jj_3R_WindowElement_4875_71_839

      private boolean jj_3R_WindowElement_4875_71_839()
    • jj_3_284

      private boolean jj_3_284()
    • jj_3R_RelObjectNameWithoutStart_1868_6_377

      private boolean jj_3R_RelObjectNameWithoutStart_1868_6_377()
    • jj_3R_RelObjectNameWithoutStart_1868_5_136

      private boolean jj_3R_RelObjectNameWithoutStart_1868_5_136()
    • jj_3R_ExtractExpression_4927_11_500

      private boolean jj_3R_ExtractExpression_4927_11_500()
    • jj_3R_IntervalExpression_4753_183_510

      private boolean jj_3R_IntervalExpression_4753_183_510()
    • jj_3R_RelObjectName_1856_6_400

      private boolean jj_3R_RelObjectName_1856_6_400()
    • jj_3R_RelObjectName_1856_5_165

      private boolean jj_3R_RelObjectName_1856_5_165()
    • jj_3R_ExtractExpression_4925_5_262

      private boolean jj_3R_ExtractExpression_4925_5_262()
    • jj_3R_RelObjectNameWithoutValue_1844_5_120

      private boolean jj_3R_RelObjectNameWithoutValue_1844_5_120()
    • jj_3R_WindowOffset_4898_19_850

      private boolean jj_3R_WindowOffset_4898_19_850()
    • jj_3R_WindowOffset_4908_5_852

      private boolean jj_3R_WindowOffset_4908_5_852()
    • jj_3R_WindowOffset_4899_12_851

      private boolean jj_3R_WindowOffset_4899_12_851()
    • jj_3R_RelObjectNameList_1802_34_128

      private boolean jj_3R_RelObjectNameList_1802_34_128()
    • jj_3_292

      private boolean jj_3_292()
    • jj_3R_IntervalExpression_4753_153_509

      private boolean jj_3R_IntervalExpression_4753_153_509()
    • jj_3_291

      private boolean jj_3_291()
    • jj_3R_WindowOffset_4896_5_286

      private boolean jj_3R_WindowOffset_4896_5_286()
    • jj_3R_WindowOffset_4897_3_528

      private boolean jj_3R_WindowOffset_4897_3_528()
    • jj_3_48

      private boolean jj_3_48()
    • jj_3R_Column_1819_7_514

      private boolean jj_3R_Column_1819_7_514()
    • jj_3_47

      private boolean jj_3_47()
    • jj_3R_Column_1816_5_238

      private boolean jj_3R_Column_1816_5_238()
    • jj_3_290

      private boolean jj_3_290()
    • jj_3R_WindowElement_4876_7_840

      private boolean jj_3R_WindowElement_4876_7_840()
    • jj_3R_WindowElement_4875_6_838

      private boolean jj_3R_WindowElement_4875_6_838()
    • jj_3R_WindowElement_4875_5_820

      private boolean jj_3R_WindowElement_4875_5_820()
    • jj_3_46

      private boolean jj_3_46()
    • jj_3R_RelObjectNameList_1801_5_402

      private boolean jj_3R_RelObjectNameList_1801_5_402()
    • jj_3R_AnalyticExpression_4861_11_497

      private boolean jj_3R_AnalyticExpression_4861_11_497()
    • jj_3R_KeepExpression_4791_79_768

      private boolean jj_3R_KeepExpression_4791_79_768()
    • jj_3R_AnalyticExpression_4860_6_496

      private boolean jj_3R_AnalyticExpression_4860_6_496()
    • jj_3R_AnalyticExpression_4860_5_258

      private boolean jj_3R_AnalyticExpression_4860_5_258()
    • jj_3_283

      private boolean jj_3_283()
    • jj_3_288

      private boolean jj_3_288()
    • jj_3_286

      private boolean jj_3_286()
    • jj_3R_IntervalExpression_4753_101_508

      private boolean jj_3R_IntervalExpression_4753_101_508()
    • jj_3R_windowDefinition_4841_11_819

      private boolean jj_3R_windowDefinition_4841_11_819()
    • jj_3R_windowDefinition_4840_10_818

      private boolean jj_3R_windowDefinition_4840_10_818()
    • jj_3R_windowDefinition_4844_6_789

      private boolean jj_3R_windowDefinition_4844_6_789()
    • jj_3R_windowDefinition_4843_6_788

      private boolean jj_3R_windowDefinition_4843_6_788()
    • jj_3R_windowFun_4824_23_855

      private boolean jj_3R_windowFun_4824_23_855()
    • jj_3R_windowFun_4823_22_854

      private boolean jj_3R_windowFun_4823_22_854()
    • jj_3R_windowDefinition_4839_6_787

      private boolean jj_3R_windowDefinition_4839_6_787()
    • jj_3R_windowDefinition_4838_5_650

      private boolean jj_3R_windowDefinition_4838_5_650()
    • jj_3R_windowFun_4822_17_849

      private boolean jj_3R_windowFun_4822_17_849()
    • jj_3_287

      private boolean jj_3_287()
    • jj_3R_KeepExpression_4791_42_767

      private boolean jj_3R_KeepExpression_4791_42_767()
    • jj_3R_windowFun_4818_9_527

      private boolean jj_3R_windowFun_4818_9_527()
    • jj_3R_windowFun_4816_9_526

      private boolean jj_3R_windowFun_4816_9_526()
    • jj_3R_windowFun_4812_9_525

      private boolean jj_3R_windowFun_4812_9_525()
    • jj_3R_windowFun_4809_10_649

      private boolean jj_3R_windowFun_4809_10_649()
    • jj_3R_MergeWhenMatched_1742_5_127

      private boolean jj_3R_MergeWhenMatched_1742_5_127()
    • jj_3R_windowFun_4809_9_524

      private boolean jj_3R_windowFun_4809_9_524()
    • jj_3R_windowFun_4808_5_285

      private boolean jj_3R_windowFun_4808_5_285()
    • jj_3_45

      private boolean jj_3_45()
    • jj_3R_Delete_1681_45_126

      private boolean jj_3R_Delete_1681_45_126()
    • jj_3R_KeepExpression_4791_5_300

      private boolean jj_3R_KeepExpression_4791_5_300()
    • jj_3R_Merge_1713_5_338

      private boolean jj_3R_Merge_1713_5_338()
    • jj_3R_IntervalExpressionWithoutInterval_4774_5_272

      private boolean jj_3R_IntervalExpressionWithoutInterval_4774_5_272()
    • jj_3R_IntervalExpression_4753_19_507

      private boolean jj_3R_IntervalExpression_4753_19_507()
    • jj_3_285

      private boolean jj_3_285()
    • jj_3R_Delete_1676_20_124

      private boolean jj_3R_Delete_1676_20_124()
    • jj_3R_Delete_1688_7_591

      private boolean jj_3R_Delete_1688_7_591()
    • jj_3R_Delete_1686_6_590

      private boolean jj_3R_Delete_1686_6_590()
    • jj_3R_Delete_1685_6_589

      private boolean jj_3R_Delete_1685_6_589()
    • jj_3R_Delete_1684_6_588

      private boolean jj_3R_Delete_1684_6_588()
    • jj_3R_Delete_1677_12_361

      private boolean jj_3R_Delete_1677_12_361()
    • jj_3R_Delete_1682_7_587

      private boolean jj_3R_Delete_1682_7_587()
    • jj_3_44

      private boolean jj_3_44()
    • jj_3R_Delete_1678_7_362

      private boolean jj_3R_Delete_1678_7_362()
    • jj_3_42

      private boolean jj_3_42()
    • jj_3_43

      private boolean jj_3_43()
    • jj_3R_IntervalExpression_4752_1_267

      private boolean jj_3R_IntervalExpression_4752_1_267()
    • jj_3_281

      private boolean jj_3_281()
    • jj_3_41

      private boolean jj_3_41()
    • jj_3_40

      private boolean jj_3_40()
    • jj_3R_Delete_1672_5_337

      private boolean jj_3R_Delete_1672_5_337()
    • jj_3R_JsonAggregateFunction_4726_19_832

      private boolean jj_3R_JsonAggregateFunction_4726_19_832()
    • jj_3R_JsonAggregateFunction_4725_18_831

      private boolean jj_3R_JsonAggregateFunction_4725_18_831()
    • jj_3R_JsonAggregateFunction_4729_14_807

      private boolean jj_3R_JsonAggregateFunction_4729_14_807()
    • jj_3R_JsonAggregateFunction_4728_14_806

      private boolean jj_3R_JsonAggregateFunction_4728_14_806()
    • jj_3R_JsonAggregateFunction_4724_14_805

      private boolean jj_3R_JsonAggregateFunction_4724_14_805()
    • jj_3_282

      private boolean jj_3_282()
    • jj_3_280

      private boolean jj_3_280()
    • jj_3R_JsonAggregateFunction_4708_15_830

      private boolean jj_3R_JsonAggregateFunction_4708_15_830()
    • jj_3R_JsonAggregateFunction_4704_15_804

      private boolean jj_3R_JsonAggregateFunction_4704_15_804()
    • jj_3_279

      private boolean jj_3_279()
    • jj_3R_JsonAggregateFunction_4701_15_803

      private boolean jj_3R_JsonAggregateFunction_4701_15_803()
    • jj_3R_Upsert_1636_9_343

      private boolean jj_3R_Upsert_1636_9_343()
    • jj_3R_JsonAggregateFunction_4700_15_802

      private boolean jj_3R_JsonAggregateFunction_4700_15_802()
    • jj_3R_Upsert_1631_9_342

      private boolean jj_3R_Upsert_1631_9_342()
    • jj_3_39

      private boolean jj_3_39()
    • jj_3R_JsonAggregateFunction_4696_11_506

      private boolean jj_3R_JsonAggregateFunction_4696_11_506()
    • jj_3R_JsonAggregateFunction_4689_15_829

      private boolean jj_3R_JsonAggregateFunction_4689_15_829()
    • jj_3_38

      private boolean jj_3_38()
    • jj_3R_Upsert_1621_9_341

      private boolean jj_3R_Upsert_1621_9_341()
    • jj_3R_JsonAggregateFunction_4685_15_828

      private boolean jj_3R_JsonAggregateFunction_4685_15_828()
    • jj_3R_JsonAggregateFunction_4685_15_801

      private boolean jj_3R_JsonAggregateFunction_4685_15_801()
    • jj_3R_Upsert_1619_9_340

      private boolean jj_3R_Upsert_1619_9_340()
    • jj_3R_Upsert_1617_9_339

      private boolean jj_3R_Upsert_1617_9_339()
    • jj_3R_JsonAggregateFunction_4679_15_827

      private boolean jj_3R_JsonAggregateFunction_4679_15_827()
    • jj_3R_Upsert_1616_5_103

      private boolean jj_3R_Upsert_1616_5_103()
    • jj_3R_JsonAggregateFunction_4675_15_800

      private boolean jj_3R_JsonAggregateFunction_4675_15_800()
    • jj_3R_JsonAggregateFunction_4669_21_798

      private boolean jj_3R_JsonAggregateFunction_4669_21_798()
    • jj_3_278

      private boolean jj_3_278()
    • jj_3R_JsonFunction_4586_101_845

      private boolean jj_3R_JsonFunction_4586_101_845()
    • jj_3R_JsonAggregateFunction_4672_15_799

      private boolean jj_3R_JsonAggregateFunction_4672_15_799()
    • jj_3R_JsonAggregateFunction_4667_15_646

      private boolean jj_3R_JsonAggregateFunction_4667_15_646()
    • jj_3_37

      private boolean jj_3_37()
    • jj_3R_JsonAggregateFunction_4665_11_505

      private boolean jj_3R_JsonAggregateFunction_4665_11_505()
    • jj_3R_JsonFunction_4565_104_283

      private boolean jj_3R_JsonFunction_4565_104_283()
    • jj_3R_OutputClause_1588_9_696

      private boolean jj_3R_OutputClause_1588_9_696()
    • jj_3R_JsonAggregateFunction_4663_5_265

      private boolean jj_3R_JsonAggregateFunction_4663_5_265()
    • jj_3R_OutputClause_1586_5_613

      private boolean jj_3R_OutputClause_1586_5_613()
    • jj_3_275

      private boolean jj_3_275()
    • jj_3R_JsonFunction_4637_19_645

      private boolean jj_3R_JsonFunction_4637_19_645()
    • jj_3R_JsonFunction_4630_25_847

      private boolean jj_3R_JsonFunction_4630_25_847()
    • jj_3_274

      private boolean jj_3_274()
    • jj_3_277

      private boolean jj_3_277()
    • jj_3_36

      private boolean jj_3_36()
    • jj_3_273

      private boolean jj_3_273()
    • jj_3_276

      private boolean jj_3_276()
    • jj_3R_JsonFunction_4610_23_708

      private boolean jj_3R_JsonFunction_4610_23_708()
    • jj_3R_JsonFunction_4618_11_504

      private boolean jj_3R_JsonFunction_4618_11_504()
    • jj_3R_JsonFunction_4606_23_644

      private boolean jj_3R_JsonFunction_4606_23_644()
    • jj_3R_JsonFunction_4606_23_707

      private boolean jj_3R_JsonFunction_4606_23_707()
    • jj_3R_JsonFunction_4586_41_844

      private boolean jj_3R_JsonFunction_4586_41_844()
    • jj_3R_JsonFunction_4590_35_846

      private boolean jj_3R_JsonFunction_4590_35_846()
    • jj_3R_JsonFunction_4600_23_706

      private boolean jj_3R_JsonFunction_4600_23_706()
    • jj_3R_JsonFunction_4584_37_843

      private boolean jj_3R_JsonFunction_4584_37_843()
    • jj_3R_JsonFunction_4596_23_643

      private boolean jj_3R_JsonFunction_4596_23_643()
    • jj_3R_JsonFunction_4596_23_705

      private boolean jj_3R_JsonFunction_4596_23_705()
    • jj_3R_JsonFunction_4583_33_826

      private boolean jj_3R_JsonFunction_4583_33_826()
    • jj_3R_JsonFunction_4565_42_282

      private boolean jj_3R_JsonFunction_4565_42_282()
    • jj_3R_JsonFunction_4569_35_842

      private boolean jj_3R_JsonFunction_4569_35_842()
    • jj_3_272

      private boolean jj_3_272()
    • jj_3R_JsonFunction_4561_33_704

      private boolean jj_3R_JsonFunction_4561_33_704()
    • jj_3R_JsonFunction_4560_25_642

      private boolean jj_3R_JsonFunction_4560_25_642()
    • jj_3R_Insert_1486_21_119

      private boolean jj_3R_Insert_1486_21_119()
    • jj_3_35

      private boolean jj_3_35()
    • jj_3R_Insert_1497_9_584

      private boolean jj_3R_Insert_1497_9_584()
    • jj_3R_Insert_1493_9_583

      private boolean jj_3R_Insert_1493_9_583()
    • jj_3R_Insert_1490_7_582

      private boolean jj_3R_Insert_1490_7_582()
    • jj_3R_JsonFunction_4555_11_503

      private boolean jj_3R_JsonFunction_4555_11_503()
    • jj_3_34

      private boolean jj_3_34()
    • jj_3_33

      private boolean jj_3_33()
    • jj_3_32

      private boolean jj_3_32()
    • jj_3_31

      private boolean jj_3_31()
    • jj_3R_JsonFunction_4553_5_264

      private boolean jj_3R_JsonFunction_4553_5_264()
    • jj_3_30

      private boolean jj_3_30()
    • jj_3R_Insert_1474_5_335

      private boolean jj_3R_Insert_1474_5_335()
    • jj_3R_JsonExpression_4527_17_281

      private boolean jj_3R_JsonExpression_4527_17_281()
    • jj_3R_JsonExpression_4525_17_280

      private boolean jj_3R_JsonExpression_4525_17_280()
    • jj_3R_JsonExpression_4523_17_279

      private boolean jj_3R_JsonExpression_4523_17_279()
    • jj_3R_JsonExpression_4521_17_278

      private boolean jj_3R_JsonExpression_4521_17_278()
    • jj_3_271

      private boolean jj_3_271()
    • jj_3_29

      private boolean jj_3_29()
    • jj_3R_ArrayConstructor_4471_51_275

      private boolean jj_3R_ArrayConstructor_4471_51_275()
    • jj_3_270

      private boolean jj_3_270()
    • jj_3_269

      private boolean jj_3_269()
    • jj_3R_ArrayConstructor_4463_47_274

      private boolean jj_3R_ArrayConstructor_4463_47_274()
    • jj_3R_JsonExpression_4502_5_755

      private boolean jj_3R_JsonExpression_4502_5_755()
    • jj_3_28

      private boolean jj_3_28()
    • jj_3R_ArrayConstructor_4473_17_834

      private boolean jj_3R_ArrayConstructor_4473_17_834()
    • jj_3R_Update_1370_47_586

      private boolean jj_3R_Update_1370_47_586()
    • jj_3_267

      private boolean jj_3_267()
    • jj_3R_ArrayConstructor_4469_13_809

      private boolean jj_3R_ArrayConstructor_4469_13_809()
    • jj_3R_ArrayConstructor_4465_13_276

      private boolean jj_3R_ArrayConstructor_4465_13_276()
    • jj_3_266

      private boolean jj_3_266()
    • jj_3_268

      private boolean jj_3_268()
    • jj_3R_ArrayConstructor_4460_5_130

      private boolean jj_3R_ArrayConstructor_4460_5_130()
    • jj_3R_RangeExpression_4449_5_519

      private boolean jj_3R_RangeExpression_4449_5_519()
    • jj_3_27

      private boolean jj_3_27()
    • jj_3_26

      private boolean jj_3_26()
    • jj_3R_DateTimeLiteralExpression_4439_5_270

      private boolean jj_3R_DateTimeLiteralExpression_4439_5_270()
    • jj_3R_Update_1367_4_336

      private boolean jj_3R_Update_1367_4_336()
    • jj_3R_NumericBind_4428_5_261

      private boolean jj_3R_NumericBind_4428_5_261()
    • jj_3R_UserVariable_4415_12_494

      private boolean jj_3R_UserVariable_4415_12_494()
    • jj_3R_ShowTables_1296_53_612

      private boolean jj_3R_ShowTables_1296_53_612()
    • jj_3R_UserVariable_4415_5_243

      private boolean jj_3R_UserVariable_4415_5_243()
    • jj_3R_OracleNamedFunctionParameter_4401_5_239

      private boolean jj_3R_OracleNamedFunctionParameter_4401_5_239()
    • jj_3R_ReturningClause_1327_5_687

      private boolean jj_3R_ReturningClause_1327_5_687()
    • jj_3R_JdbcNamedParameter_4388_12_499

      private boolean jj_3R_JdbcNamedParameter_4388_12_499()
    • jj_3R_JdbcNamedParameter_4388_5_260

      private boolean jj_3R_JdbcNamedParameter_4388_5_260()
    • jj_3R_Values_1311_5_134

      private boolean jj_3R_Values_1311_5_134()
    • jj_3R_NextValExpression_4376_6_271

      private boolean jj_3R_NextValExpression_4376_6_271()
    • jj_3R_ShowTables_1296_6_611

      private boolean jj_3R_ShowTables_1296_6_611()
    • jj_3R_ShowTables_1296_5_359

      private boolean jj_3R_ShowTables_1296_5_359()
    • jj_3R_ShowTables_1292_7_610

      private boolean jj_3R_ShowTables_1292_7_610()
    • jj_3R_ConnectByRootOperator_4365_5_639

      private boolean jj_3R_ConnectByRootOperator_4365_5_639()
    • jj_3R_ShowTables_1291_7_609

      private boolean jj_3R_ShowTables_1291_7_609()
    • jj_3R_ShowTables_1290_5_358

      private boolean jj_3R_ShowTables_1290_5_358()
    • jj_3R_ShowTables_1287_5_357

      private boolean jj_3R_ShowTables_1287_5_357()
    • jj_3R_ShowTables_1286_5_356

      private boolean jj_3R_ShowTables_1286_5_356()
    • jj_3R_ShowTables_1286_3_117

      private boolean jj_3R_ShowTables_1286_3_117()
    • jj_3_265

      private boolean jj_3_265()
    • jj_3R_PrimaryExpression_4331_13_518

      private boolean jj_3R_PrimaryExpression_4331_13_518()
    • jj_3R_PrimaryExpression_4329_13_517

      private boolean jj_3R_PrimaryExpression_4329_13_517()
    • jj_3R_PrimaryExpression_4327_13_516

      private boolean jj_3R_PrimaryExpression_4327_13_516()
    • jj_3R_PrimaryExpression_4325_13_273

      private boolean jj_3R_PrimaryExpression_4325_13_273()
    • jj_3R_PrimaryExpression_4325_13_515

      private boolean jj_3R_PrimaryExpression_4325_13_515()
    • jj_3_25

      private boolean jj_3_25()
    • jj_3R_RefreshMaterializedView_1257_5_674

      private boolean jj_3R_RefreshMaterializedView_1257_5_674()
    • jj_3_264

      private boolean jj_3_264()
    • jj_3R_ShowIndex_1244_5_116

      private boolean jj_3R_ShowIndex_1244_5_116()
    • jj_3_241

      private boolean jj_3_241()
    • jj_3R_PrimaryExpression_4313_7_726

      private boolean jj_3R_PrimaryExpression_4313_7_726()
    • jj_3R_PrimaryExpression_4311_7_725

      private boolean jj_3R_PrimaryExpression_4311_7_725()
    • jj_3_263

      private boolean jj_3_263()
    • jj_3R_PrimaryExpression_4299_14_753

      private boolean jj_3R_PrimaryExpression_4299_14_753()
    • jj_3_262

      private boolean jj_3_262()
    • jj_3R_ShowColumns_1234_5_115

      private boolean jj_3R_ShowColumns_1234_5_115()
    • jj_3_261

      private boolean jj_3_261()
    • jj_3R_TrimFunction_7360_13_848

      private boolean jj_3R_TrimFunction_7360_13_848()
    • jj_3R_PrimaryExpression_4290_9_493

      private boolean jj_3R_PrimaryExpression_4290_9_493()
    • jj_3R_PrimaryExpression_4287_11_492

      private boolean jj_3R_PrimaryExpression_4287_11_492()
    • jj_3R_PrimaryExpression_4285_11_491

      private boolean jj_3R_PrimaryExpression_4285_11_491()
    • jj_3R_TrimFunction_7357_9_833

      private boolean jj_3R_TrimFunction_7357_9_833()
    • jj_3R_PrimaryExpression_4283_11_490

      private boolean jj_3R_PrimaryExpression_4283_11_490()
    • jj_3_24

      private boolean jj_3_24()
    • jj_3R_PrimaryExpression_4281_11_489

      private boolean jj_3R_PrimaryExpression_4281_11_489()
    • jj_3_23

      private boolean jj_3_23()
    • jj_3R_TrimFunction_7349_13_330

      private boolean jj_3R_TrimFunction_7349_13_330()
    • jj_3R_PrimaryExpression_4279_11_488

      private boolean jj_3R_PrimaryExpression_4279_11_488()
    • jj_3_371

      private boolean jj_3_371()
    • jj_3_22

      private boolean jj_3_22()
    • jj_3R_TrimFunction_7347_13_329

      private boolean jj_3R_TrimFunction_7347_13_329()
    • jj_3_260

      private boolean jj_3_260()
    • jj_3R_TrimFunction_7345_13_328

      private boolean jj_3R_TrimFunction_7345_13_328()
    • jj_3_259

      private boolean jj_3_259()
    • jj_3R_PrimaryExpression_4273_11_487

      private boolean jj_3R_PrimaryExpression_4273_11_487()
    • jj_3R_Show_1207_5_673

      private boolean jj_3R_Show_1207_5_673()
    • jj_3_258

      private boolean jj_3_258()
    • jj_3_370

      private boolean jj_3_370()
    • jj_3_21

      private boolean jj_3_21()
    • jj_3_257

      private boolean jj_3_257()
    • jj_3_256

      private boolean jj_3_256()
    • jj_3_255

      private boolean jj_3_255()
    • jj_3R_TrimFunction_7342_5_648

      private boolean jj_3R_TrimFunction_7342_5_648()
    • jj_3_254

      private boolean jj_3_254()
    • jj_3R_Use_1195_5_675

      private boolean jj_3R_Use_1195_5_675()
    • jj_3_251

      private boolean jj_3_251()
    • jj_3_253

      private boolean jj_3_253()
    • jj_3R_PrimaryExpression_4258_11_486

      private boolean jj_3R_PrimaryExpression_4258_11_486()
    • jj_3R_PrimaryExpression_4256_11_485

      private boolean jj_3R_PrimaryExpression_4256_11_485()
    • jj_3R_PrimaryExpression_4254_11_484

      private boolean jj_3R_PrimaryExpression_4254_11_484()
    • jj_3_252

      private boolean jj_3_252()
    • jj_3R_PrimaryExpression_4250_11_483

      private boolean jj_3R_PrimaryExpression_4250_11_483()
    • jj_3R_TranscodingFunction_7327_5_647

      private boolean jj_3R_TranscodingFunction_7327_5_647()
    • jj_3_250

      private boolean jj_3_250()
    • jj_3_249

      private boolean jj_3_249()
    • jj_3_248

      private boolean jj_3_248()
    • jj_3R_PrimaryExpression_4223_31_637

      private boolean jj_3R_PrimaryExpression_4223_31_637()
    • jj_3R_ExplainStatementOptions_1177_5_605

      private boolean jj_3R_ExplainStatementOptions_1177_5_605()
    • jj_3R_PrimaryExpression_4242_11_482

      private boolean jj_3R_PrimaryExpression_4242_11_482()
    • jj_3_247

      private boolean jj_3_247()
    • jj_3_246

      private boolean jj_3_246()
    • jj_3_245

      private boolean jj_3_245()
    • jj_3R_ExplainStatementOptions_1169_5_604

      private boolean jj_3R_ExplainStatementOptions_1169_5_604()
    • jj_3_244

      private boolean jj_3_244()
    • jj_3_243

      private boolean jj_3_243()
    • jj_3R_PrimaryExpression_4230_11_481

      private boolean jj_3R_PrimaryExpression_4230_11_481()
    • jj_3R_CharacterPrimary_7302_9_513

      private boolean jj_3R_CharacterPrimary_7302_9_513()
    • jj_3_242

      private boolean jj_3_242()
    • jj_3R_CharacterPrimary_7300_9_512

      private boolean jj_3R_CharacterPrimary_7300_9_512()
    • jj_3R_ExplainStatementOptions_1161_5_603

      private boolean jj_3R_ExplainStatementOptions_1161_5_603()
    • jj_3R_PrimaryExpression_4226_9_480

      private boolean jj_3R_PrimaryExpression_4226_9_480()
    • jj_3R_CharacterPrimary_7299_5_269

      private boolean jj_3R_CharacterPrimary_7299_5_269()
    • jj_3R_PrimaryExpression_4223_7_478

      private boolean jj_3R_PrimaryExpression_4223_7_478()
    • jj_3R_PrimaryExpression_4224_6_479

      private boolean jj_3R_PrimaryExpression_4224_6_479()
    • jj_3R_PrimaryExpression_4223_7_636

      private boolean jj_3R_PrimaryExpression_4223_7_636()
    • jj_3R_ExplainStatementOptions_1153_5_602

      private boolean jj_3R_ExplainStatementOptions_1153_5_602()
    • jj_3R_PrimaryExpression_4223_5_242

      private boolean jj_3R_PrimaryExpression_4223_5_242()
    • jj_3R_IdentifierChain_7287_7_640

      private boolean jj_3R_IdentifierChain_7287_7_640()
    • jj_3R_ExplainStatementOptions_1145_5_349

      private boolean jj_3R_ExplainStatementOptions_1145_5_349()
    • jj_3R_ExplainStatementOptions_1145_5_601

      private boolean jj_3R_ExplainStatementOptions_1145_5_601()
    • jj_3R_IdentifierChain_7286_5_495

      private boolean jj_3R_IdentifierChain_7286_5_495()
    • jj_3R_ExplainStatementOptions_1144_3_113

      private boolean jj_3R_ExplainStatementOptions_1144_3_113()
    • jj_3_240

      private boolean jj_3_240()
    • jj_3R_ArrayExpression_4196_15_810

      private boolean jj_3R_ArrayExpression_4196_15_810()
    • jj_3_239

      private boolean jj_3_239()
    • jj_3R_ExplainFormatOption_1127_5_718

      private boolean jj_3R_ExplainFormatOption_1127_5_718()
    • jj_3R_ArrayExpression_4193_9_785

      private boolean jj_3R_ArrayExpression_4193_9_785()
    • jj_3R_ExplainFormatOption_1127_4_694

      private boolean jj_3R_ExplainFormatOption_1127_4_694()
    • jj_3_238

      private boolean jj_3_238()
    • jj_3R_ArrayExpression_4187_11_784

      private boolean jj_3R_ArrayExpression_4187_11_784()
    • jj_3_237

      private boolean jj_3_237()
    • jj_3R_ArrayExpression_4184_5_754

      private boolean jj_3R_ArrayExpression_4184_5_754()
    • jj_3R_ExplainOptionBoolean_1112_5_717

      private boolean jj_3R_ExplainOptionBoolean_1112_5_717()
    • jj_3R_ExplainOptionBoolean_1112_4_693

      private boolean jj_3R_ExplainOptionBoolean_1112_4_693()
    • jj_3R_MultiplicativeExpression_4140_39_256

      private boolean jj_3R_MultiplicativeExpression_4140_39_256()
    • jj_3R_MultiplicativeExpression_4139_39_255

      private boolean jj_3R_MultiplicativeExpression_4139_39_255()
    • jj_3R_MultiplicativeExpression_4138_39_254

      private boolean jj_3R_MultiplicativeExpression_4138_39_254()
    • jj_3R_BitwiseXor_4164_9_733

      private boolean jj_3R_BitwiseXor_4164_9_733()
    • jj_3R_BitwiseXor_4162_5_257

      private boolean jj_3R_BitwiseXor_4162_5_257()
    • jj_3_20

      private boolean jj_3_20()
    • jj_3R_MultiplicativeExpression_4137_23_253

      private boolean jj_3R_MultiplicativeExpression_4137_23_253()
    • jj_3R_Explain_1080_5_681

      private boolean jj_3R_Explain_1080_5_681()
    • jj_3R_AdditiveExpression_4111_39_251

      private boolean jj_3R_AdditiveExpression_4111_39_251()
    • jj_3_236

      private boolean jj_3_236()
    • jj_3R_Describe_1067_5_680

      private boolean jj_3R_Describe_1067_5_680()
    • jj_3R_MultiplicativeExpression_4132_5_252

      private boolean jj_3R_MultiplicativeExpression_4132_5_252()
    • jj_3R_AdditiveExpression_4110_10_250

      private boolean jj_3R_AdditiveExpression_4110_10_250()
    • jj_3_235

      private boolean jj_3_235()
    • jj_3R_PurgeStatement_1039_5_684

      private boolean jj_3R_PurgeStatement_1039_5_684()
    • jj_3R_AdditiveExpression_4108_5_249

      private boolean jj_3R_AdditiveExpression_4108_5_249()
    • jj_3R_BitwiseAndOr_4081_13_246

      private boolean jj_3R_BitwiseAndOr_4081_13_246()
    • jj_3R_BitwiseAndOr_4079_13_245

      private boolean jj_3R_BitwiseAndOr_4079_13_245()
    • jj_3R_BitwiseAndOr_4085_4_248

      private boolean jj_3R_BitwiseAndOr_4085_4_248()
    • jj_3R_BitwiseAndOr_4083_4_247

      private boolean jj_3R_BitwiseAndOr_4083_4_247()
    • jj_3_234

      private boolean jj_3_234()
    • jj_3R_Set_964_49_347

      private boolean jj_3R_Set_964_49_347()
    • jj_3R_BitwiseAndOr_4076_5_244

      private boolean jj_3R_BitwiseAndOr_4076_5_244()
    • jj_3_19

      private boolean jj_3_19()
    • jj_3_18

      private boolean jj_3_18()
    • jj_3R_RenameTableStatement_1000_5_665

      private boolean jj_3R_RenameTableStatement_1000_5_665()
    • jj_3_17

      private boolean jj_3_17()
    • jj_3R_Reset_986_5_672

      private boolean jj_3R_Reset_986_5_672()
    • jj_3_233

      private boolean jj_3_233()
    • jj_3_16

      private boolean jj_3_16()
    • jj_3R_ConcatExpression_4053_5_185

      private boolean jj_3R_ConcatExpression_4053_5_185()
    • jj_3_369

      private boolean jj_3_369()
    • jj_3R_Set_964_21_111

      private boolean jj_3R_Set_964_21_111()
    • jj_3_368

      private boolean jj_3_368()
    • jj_3_14

      private boolean jj_3_14()
    • jj_3_232

      private boolean jj_3_232()
    • jj_3R_Create_7107_5_666

      private boolean jj_3R_Create_7107_5_666()
    • jj_3_15

      private boolean jj_3_15()
    • jj_3R_SimpleExpression_4025_11_422

      private boolean jj_3R_SimpleExpression_4025_11_422()
    • jj_3R_SimpleExpression_4024_5_202

      private boolean jj_3R_SimpleExpression_4024_5_202()
    • jj_3R_AlterSequence_7091_5_692

      private boolean jj_3R_AlterSequence_7091_5_692()
    • jj_3R_AnyComparisonExpression_4008_11_477

      private boolean jj_3R_AnyComparisonExpression_4008_11_477()
    • jj_3R_AnyComparisonExpression_4007_11_476

      private boolean jj_3R_AnyComparisonExpression_4007_11_476()
    • jj_3_13

      private boolean jj_3_13()
    • jj_3R_AnyComparisonExpression_4006_9_475

      private boolean jj_3R_AnyComparisonExpression_4006_9_475()
    • jj_3_12

      private boolean jj_3_12()
    • jj_3R_AnyComparisonExpression_4005_5_240

      private boolean jj_3R_AnyComparisonExpression_4005_5_240()
    • jj_3R_Set_932_5_671

      private boolean jj_3R_Set_932_5_671()
    • jj_3_231

      private boolean jj_3_231()
    • jj_3_230

      private boolean jj_3_230()
    • jj_3_229

      private boolean jj_3_229()
    • jj_3_228

      private boolean jj_3_228()
    • jj_3_227

      private boolean jj_3_227()
    • jj_3R_ComparisonItem_3986_3_221

      private boolean jj_3R_ComparisonItem_3986_3_221()
    • jj_3R_NamedExpressionListExprFirst_3968_5_653

      private boolean jj_3R_NamedExpressionListExprFirst_3968_5_653()
    • jj_3R_Statements_835_63_110

      private boolean jj_3R_Statements_835_63_110()
    • jj_3_11

      private boolean jj_3_11()
    • jj_3R_NamedExpressionListExprFirst_3965_4_531

      private boolean jj_3R_NamedExpressionListExprFirst_3965_4_531()
    • jj_3R_Declare_886_5_682

      private boolean jj_3R_Declare_886_5_682()
    • jj_3R_NamedExpressionListExprFirst_3955_2_289

      private boolean jj_3R_NamedExpressionListExprFirst_3955_2_289()
    • jj_3R_Statements_835_36_109

      private boolean jj_3R_Statements_835_36_109()
    • jj_3R_Statements_807_61_107

      private boolean jj_3R_Statements_807_61_107()
    • jj_3_10

      private boolean jj_3_10()
    • jj_3_226

      private boolean jj_3_226()
    • jj_3_225

      private boolean jj_3_225()
    • jj_3R_Statements_834_27_108

      private boolean jj_3R_Statements_834_27_108()
    • jj_3_224

      private boolean jj_3_224()
    • jj_3_9

      private boolean jj_3_9()
    • jj_3_223

      private boolean jj_3_223()
    • jj_3_222

      private boolean jj_3_222()
    • jj_3R_ComplexExpressionList_3912_5_235

      private boolean jj_3R_ComplexExpressionList_3912_5_235()
    • jj_3R_Statements_807_33_106

      private boolean jj_3R_Statements_807_33_106()
    • jj_3_8

      private boolean jj_3_8()
    • jj_3R_ParenthesedColumnList_3900_5_123

      private boolean jj_3R_ParenthesedColumnList_3900_5_123()
    • jj_3R_Statements_806_24_105

      private boolean jj_3R_Statements_806_24_105()
    • jj_3_7

      private boolean jj_3_7()
    • jj_3_221

      private boolean jj_3_221()
    • jj_3R_ColumnList_3888_5_121

      private boolean jj_3R_ColumnList_3888_5_121()
    • jj_3_220

      private boolean jj_3_220()
    • jj_3R_SimpleExpressionList_3874_5_236

      private boolean jj_3R_SimpleExpressionList_3874_5_236()
    • jj_3R_IsBooleanExpression_3780_94_463

      private boolean jj_3R_IsBooleanExpression_3780_94_463()
    • jj_3_6

      private boolean jj_3_6()
    • jj_3_218

      private boolean jj_3_218()
    • jj_3R_ParenthesedExpressionList_3858_9_237

      private boolean jj_3R_ParenthesedExpressionList_3858_9_237()
    • jj_3_219

      private boolean jj_3_219()
    • jj_3R_ParenthesedExpressionList_3856_5_201

      private boolean jj_3R_ParenthesedExpressionList_3856_5_201()
    • jj_3R_Grant_6912_2_683

      private boolean jj_3R_Grant_6912_2_683()
    • jj_3R_IsBooleanExpression_3780_55_462

      private boolean jj_3R_IsBooleanExpression_3780_55_462()
    • jj_3_217

      private boolean jj_3_217()
    • jj_3_216

      private boolean jj_3_216()
    • jj_3_215

      private boolean jj_3_215()
    • jj_3R_Block_751_5_332

      private boolean jj_3R_Block_751_5_332()
    • jj_3R_ExpressionList_3819_5_200

      private boolean jj_3R_ExpressionList_3819_5_200()
    • jj_3R_Comment_6882_5_679

      private boolean jj_3R_Comment_6882_5_679()
    • jj_3R_SingleStatement_731_13_580

      private boolean jj_3R_SingleStatement_731_13_580()
    • jj_3R_SingleStatement_729_13_579

      private boolean jj_3R_SingleStatement_729_13_579()
    • jj_3R_MemberOfExpression_3808_5_466

      private boolean jj_3R_MemberOfExpression_3808_5_466()
    • jj_3R_SingleStatement_727_13_578

      private boolean jj_3R_SingleStatement_727_13_578()
    • jj_3R_SingleStatement_725_13_577

      private boolean jj_3R_SingleStatement_725_13_577()
    • jj_3R_SingleStatement_723_13_576

      private boolean jj_3R_SingleStatement_723_13_576()
    • jj_3R_SingleStatement_721_13_575

      private boolean jj_3R_SingleStatement_721_13_575()
    • jj_3R_SingleStatement_719_13_574

      private boolean jj_3R_SingleStatement_719_13_574()
    • jj_3R_SingleStatement_717_13_573

      private boolean jj_3R_SingleStatement_717_13_573()
    • jj_3R_ExistsExpression_3795_5_631

      private boolean jj_3R_ExistsExpression_3795_5_631()
    • jj_3R_SingleStatement_715_13_572

      private boolean jj_3R_SingleStatement_715_13_572()
    • jj_3R_IsBooleanExpression_3780_19_461

      private boolean jj_3R_IsBooleanExpression_3780_19_461()
    • jj_3R_Commit_6867_3_678

      private boolean jj_3R_Commit_6867_3_678()
    • jj_3R_SingleStatement_713_13_571

      private boolean jj_3R_SingleStatement_713_13_571()
    • jj_3R_SingleStatement_711_13_570

      private boolean jj_3R_SingleStatement_711_13_570()
    • jj_3R_SingleStatement_709_13_569

      private boolean jj_3R_SingleStatement_709_13_569()
    • jj_3R_SingleStatement_707_13_568

      private boolean jj_3R_SingleStatement_707_13_568()
    • jj_3R_SingleStatement_705_13_567

      private boolean jj_3R_SingleStatement_705_13_567()
    • jj_3R_IsBooleanExpression_3779_9_224

      private boolean jj_3R_IsBooleanExpression_3779_9_224()
    • jj_3R_SingleStatement_703_13_566

      private boolean jj_3R_SingleStatement_703_13_566()
    • jj_3R_SingleStatement_701_13_565

      private boolean jj_3R_SingleStatement_701_13_565()
    • jj_3R_IsNullExpression_3766_19_633

      private boolean jj_3R_IsNullExpression_3766_19_633()
    • jj_3R_SingleStatement_699_13_564

      private boolean jj_3R_SingleStatement_699_13_564()
    • jj_3R_SingleStatement_697_13_563

      private boolean jj_3R_SingleStatement_697_13_563()
    • jj_3R_RollbackStatement_6846_5_677

      private boolean jj_3R_RollbackStatement_6846_5_677()
    • jj_3R_SingleStatement_695_13_562

      private boolean jj_3R_SingleStatement_695_13_562()
    • jj_3R_SingleStatement_693_13_561

      private boolean jj_3R_SingleStatement_693_13_561()
    • jj_3R_IsNullExpression_3766_11_460

      private boolean jj_3R_IsNullExpression_3766_11_460()
    • jj_3R_IsNullExpression_3765_11_459

      private boolean jj_3R_IsNullExpression_3765_11_459()
    • jj_3R_IsNullExpression_3764_11_632

      private boolean jj_3R_IsNullExpression_3764_11_632()
    • jj_3_5

      private boolean jj_3_5()
    • jj_3R_IsNullExpression_3764_9_458

      private boolean jj_3R_IsNullExpression_3764_9_458()
    • jj_3R_SingleStatement_680_21_102

      private boolean jj_3R_SingleStatement_680_21_102()
    • jj_3_4

      private boolean jj_3_4()
    • jj_3R_SingleStatement_678_21_101

      private boolean jj_3R_SingleStatement_678_21_101()
    • jj_3R_SingleStatement_686_13_560

      private boolean jj_3R_SingleStatement_686_13_560()
    • jj_3R_SingleStatement_676_21_100

      private boolean jj_3R_SingleStatement_676_21_100()
    • jj_3R_SingleStatement_684_13_559

      private boolean jj_3R_SingleStatement_684_13_559()
    • jj_3R_IsNullExpression_3763_5_223

      private boolean jj_3R_IsNullExpression_3763_5_223()
    • jj_3R_SingleStatement_674_21_99

      private boolean jj_3R_SingleStatement_674_21_99()
    • jj_3R_SingleStatement_672_21_98

      private boolean jj_3R_SingleStatement_672_21_98()
    • jj_3R_SavepointStatement_6830_5_676

      private boolean jj_3R_SavepointStatement_6830_5_676()
    • jj_3R_IsDistinctExpression_3748_13_465

      private boolean jj_3R_IsDistinctExpression_3748_13_465()
    • jj_3R_Statement_634_55_96

      private boolean jj_3R_Statement_634_55_96()
    • jj_3_2

      private boolean jj_3_2()
    • jj_3R_IsDistinctExpression_3748_5_226

      private boolean jj_3R_IsDistinctExpression_3748_5_226()
    • jj_3R_Wait_6818_5_790

      private boolean jj_3R_Wait_6818_5_790()
    • jj_3_3

      private boolean jj_3_3()
    • jj_3R_SingleStatement_667_5_331

      private boolean jj_3R_SingleStatement_667_5_331()
    • jj_3_214

      private boolean jj_3_214()
    • jj_3R_SimilarToExpression_3730_6_634

      private boolean jj_3R_SimilarToExpression_3730_6_634()
    • jj_3R_SimilarToExpression_3730_5_467

      private boolean jj_3R_SimilarToExpression_3730_5_467()
    • jj_3R_Statement_634_28_95

      private boolean jj_3R_Statement_634_28_95()
    • jj_3_212

      private boolean jj_3_212()
    • jj_3_211

      private boolean jj_3_211()
    • jj_3_1

      private boolean jj_3_1()
    • jj_3_213

      private boolean jj_3_213()
    • jj_3_210

      private boolean jj_3_210()
    • jj_3R_LikeExpression_3700_6_464

      private boolean jj_3R_LikeExpression_3700_6_464()
    • jj_3R_LikeExpression_3700_5_225

      private boolean jj_3R_LikeExpression_3700_5_225()
    • jj_3_208

      private boolean jj_3_208()
    • jj_3_205

      private boolean jj_3_205()
    • jj_3_209

      private boolean jj_3_209()
    • jj_3R_Between_3679_13_792

      private boolean jj_3R_Between_3679_13_792()
    • jj_3_207

      private boolean jj_3_207()
    • jj_3_206

      private boolean jj_3_206()
    • jj_3R_Between_3670_13_457

      private boolean jj_3R_Between_3670_13_457()
    • jj_3_204

      private boolean jj_3_204()
    • jj_3R_Between_3665_10_456

      private boolean jj_3R_Between_3665_10_456()
    • jj_3R_Between_3665_9_222

      private boolean jj_3R_Between_3665_9_222()
    • jj_3_201

      private boolean jj_3_201()
    • jj_3R_AlterSystemStatement_6728_5_691

      private boolean jj_3R_AlterSystemStatement_6728_5_691()
    • jj_3_203

      private boolean jj_3_203()
    • jj_3_202

      private boolean jj_3_202()
    • jj_3R_InExpression_3644_11_471

      private boolean jj_3R_InExpression_3644_11_471()
    • jj_3_200

      private boolean jj_3_200()
    • jj_3_199

      private boolean jj_3_199()
    • jj_3R_InExpression_3639_6_470

      private boolean jj_3R_InExpression_3639_6_470()
    • jj_3R_InExpression_3638_6_469

      private boolean jj_3R_InExpression_3638_6_469()
    • jj_3R_InExpression_3636_7_468

      private boolean jj_3R_InExpression_3636_7_468()
    • jj_3_194

      private boolean jj_3_194()
    • jj_3R_InExpression_3635_5_232

      private boolean jj_3R_InExpression_3635_5_232()
    • jj_3_192

      private boolean jj_3_192()
    • jj_3_191

      private boolean jj_3_191()
    • jj_3R_SQLCondition_3617_17_231

      private boolean jj_3R_SQLCondition_3617_17_231()
    • jj_3R_SQLCondition_3615_17_230

      private boolean jj_3R_SQLCondition_3615_17_230()
    • jj_3_193

      private boolean jj_3_193()
    • jj_3R_SQLCondition_3611_17_229

      private boolean jj_3R_SQLCondition_3611_17_229()
    • jj_3R_SQLCondition_3609_17_228

      private boolean jj_3R_SQLCondition_3609_17_228()
    • jj_3R_SQLCondition_3607_17_227

      private boolean jj_3R_SQLCondition_3607_17_227()
    • jj_3_190

      private boolean jj_3_190()
    • jj_3_197

      private boolean jj_3_197()
    • jj_3_195

      private boolean jj_3_195()
    • jj_3_196

      private boolean jj_3_196()
    • jj_3_198

      private boolean jj_3_198()
    • jj_3R_SQLCondition_3600_7_455

      private boolean jj_3R_SQLCondition_3600_7_455()
    • jj_3R_SQLCondition_3599_7_454

      private boolean jj_3R_SQLCondition_3599_7_454()
    • jj_3R_SQLCondition_3598_5_453

      private boolean jj_3R_SQLCondition_3598_5_453()
    • jj_3R_SQLCondition_3597_5_220

      private boolean jj_3R_SQLCondition_3597_5_220()
    • jj_3R_AlterSession_6662_5_689

      private boolean jj_3R_AlterSession_6662_5_689()
    • jj_3_367

      private boolean jj_3_367()
    • jj_3_188

      private boolean jj_3_188()
    • jj_3_189

      private boolean jj_3_189()
    • jj_3R_RegularCondition_3565_11_452

      private boolean jj_3R_RegularCondition_3565_11_452()
    • jj_3_187

      private boolean jj_3_187()
    • jj_3R_RegularCondition_3564_11_451

      private boolean jj_3R_RegularCondition_3564_11_451()
    • jj_3R_AlterTable_6641_5_688

      private boolean jj_3R_AlterTable_6641_5_688()
    • jj_3R_RegularCondition_3563_11_450

      private boolean jj_3R_RegularCondition_3563_11_450()
    • jj_3R_RegularCondition_3562_11_449

      private boolean jj_3R_RegularCondition_3562_11_449()
    • jj_3R_RegularCondition_3561_11_448

      private boolean jj_3R_RegularCondition_3561_11_448()
    • jj_3R_RegularCondition_3560_11_447

      private boolean jj_3R_RegularCondition_3560_11_447()
    • jj_3R_RegularCondition_3559_11_446

      private boolean jj_3R_RegularCondition_3559_11_446()
    • jj_3R_RegularCondition_3558_11_445

      private boolean jj_3R_RegularCondition_3558_11_445()
    • jj_3R_RegularCondition_3557_11_444

      private boolean jj_3R_RegularCondition_3557_11_444()
    • jj_3R_RegularCondition_3556_11_443

      private boolean jj_3R_RegularCondition_3556_11_443()
    • jj_3R_Alter_6621_17_599

      private boolean jj_3R_Alter_6621_17_599()
    • jj_3R_RegularCondition_3554_11_442

      private boolean jj_3R_RegularCondition_3554_11_442()
    • jj_3R_Alter_6619_17_598

      private boolean jj_3R_Alter_6619_17_598()
    • jj_3R_RegularCondition_3553_11_441

      private boolean jj_3R_RegularCondition_3553_11_441()
    • jj_3R_RegularCondition_3552_11_440

      private boolean jj_3R_RegularCondition_3552_11_440()
    • jj_3R_RegularCondition_3551_11_439

      private boolean jj_3R_RegularCondition_3551_11_439()
    • jj_3R_RegularCondition_3550_11_438

      private boolean jj_3R_RegularCondition_3550_11_438()
    • jj_3R_RegularCondition_3549_11_437

      private boolean jj_3R_RegularCondition_3549_11_437()
    • jj_3R_RegularCondition_3548_11_436

      private boolean jj_3R_RegularCondition_3548_11_436()
    • jj_3R_RegularCondition_3547_11_435

      private boolean jj_3R_RegularCondition_3547_11_435()
    • jj_3R_RegularCondition_3546_11_434

      private boolean jj_3R_RegularCondition_3546_11_434()
    • jj_3R_RegularCondition_3545_11_433

      private boolean jj_3R_RegularCondition_3545_11_433()
    • jj_3R_RegularCondition_3544_11_432

      private boolean jj_3R_RegularCondition_3544_11_432()
    • jj_3R_Alter_6609_17_597

      private boolean jj_3R_Alter_6609_17_597()
    • jj_3R_RegularCondition_3543_11_431

      private boolean jj_3R_RegularCondition_3543_11_431()
    • jj_3R_Alter_6616_9_345

      private boolean jj_3R_Alter_6616_9_345()
    • jj_3R_RegularCondition_3542_11_430

      private boolean jj_3R_RegularCondition_3542_11_430()
    • jj_3R_Alter_6607_17_596

      private boolean jj_3R_Alter_6607_17_596()
    • jj_3R_RegularCondition_3541_11_429

      private boolean jj_3R_RegularCondition_3541_11_429()
    • jj_3R_RegularCondition_3540_11_428

      private boolean jj_3R_RegularCondition_3540_11_428()
    • jj_3R_Alter_6605_17_595

      private boolean jj_3R_Alter_6605_17_595()
    • jj_3R_RegularCondition_3539_11_427

      private boolean jj_3R_RegularCondition_3539_11_427()
    • jj_3R_Alter_6603_17_594

      private boolean jj_3R_Alter_6603_17_594()
    • jj_3R_AlterExpression_6535_84_323

      private boolean jj_3R_AlterExpression_6535_84_323()
    • jj_3R_Alter_6601_17_593

      private boolean jj_3R_Alter_6601_17_593()
    • jj_3_186

      private boolean jj_3_186()
    • jj_3R_Alter_6599_17_592

      private boolean jj_3R_Alter_6599_17_592()
    • jj_3R_Condition_3497_45_218

      private boolean jj_3R_Condition_3497_45_218()
    • jj_3R_RegularCondition_3534_7_426

      private boolean jj_3R_RegularCondition_3534_7_426()
    • jj_3_185

      private boolean jj_3_185()
    • jj_3R_RegularCondition_3531_5_219

      private boolean jj_3R_RegularCondition_3531_5_219()
    • jj_3R_Alter_6596_9_344

      private boolean jj_3R_Alter_6596_9_344()
    • jj_3R_Alter_6595_5_104

      private boolean jj_3R_Alter_6595_5_104()
    • jj_3R_OverlapsCondition_3513_5_233

      private boolean jj_3R_OverlapsCondition_3513_5_233()
    • jj_3R_Condition_3497_21_217

      private boolean jj_3R_Condition_3497_21_217()
    • jj_3_183

      private boolean jj_3_183()
    • jj_3R_AndExpression_3475_39_630

      private boolean jj_3R_AndExpression_3475_39_630()
    • jj_3_184

      private boolean jj_3_184()
    • jj_3R_Condition_3499_9_408

      private boolean jj_3R_Condition_3499_9_408()
    • jj_3R_AlterExpression_6551_26_546

      private boolean jj_3R_AlterExpression_6551_26_546()
    • jj_3R_AlterExpression_6551_25_324

      private boolean jj_3R_AlterExpression_6551_25_324()
    • jj_3R_AlterExpression_6553_23_325

      private boolean jj_3R_AlterExpression_6553_23_325()
    • jj_3_182

      private boolean jj_3_182()
    • jj_3R_AlterExpression_6552_23_547

      private boolean jj_3R_AlterExpression_6552_23_547()
    • jj_3R_Condition_3497_5_184

      private boolean jj_3R_Condition_3497_5_184()
    • jj_3_366

      private boolean jj_3_366()
    • jj_3R_AndExpression_3463_35_702

      private boolean jj_3R_AndExpression_3463_35_702()
    • jj_3R_AndExpression_3470_21_214

      private boolean jj_3R_AndExpression_3470_21_214()
    • jj_3_181

      private boolean jj_3_181()
    • jj_3R_AndExpression_3475_15_425

      private boolean jj_3R_AndExpression_3475_15_425()
    • jj_3R_AndExpression_3475_15_629

      private boolean jj_3R_AndExpression_3475_15_629()
    • jj_3R_AndExpression_3475_13_216

      private boolean jj_3R_AndExpression_3475_13_216()
    • jj_3_365

      private boolean jj_3_365()
    • jj_3R_AndExpression_3472_9_215

      private boolean jj_3R_AndExpression_3472_9_215()
    • jj_3_179

      private boolean jj_3_179()
    • jj_3_364

      private boolean jj_3_364()
    • jj_3_180

      private boolean jj_3_180()
    • jj_3R_AndExpression_3463_11_628

      private boolean jj_3R_AndExpression_3463_11_628()
    • jj_3R_AndExpression_3463_11_701

      private boolean jj_3R_AndExpression_3463_11_701()
    • jj_3R_AndExpression_3463_9_424

      private boolean jj_3R_AndExpression_3463_9_424()
    • jj_3_363

      private boolean jj_3_363()
    • jj_3R_AndExpression_3460_9_423

      private boolean jj_3R_AndExpression_3460_9_423()
    • jj_3R_AndExpression_3459_5_213

      private boolean jj_3R_AndExpression_3459_5_213()
    • jj_3_178

      private boolean jj_3_178()
    • jj_3R_OrExpression_3437_5_212

      private boolean jj_3R_OrExpression_3437_5_212()
    • jj_3_362

      private boolean jj_3_362()
    • jj_3_177

      private boolean jj_3_177()
    • jj_3R_XorExpression_3418_5_348

      private boolean jj_3R_XorExpression_3418_5_348()
    • jj_3_174

      private boolean jj_3_174()
    • jj_3R_Expression_3408_5_112

      private boolean jj_3R_Expression_3408_5_112()
    • jj_3R_First_3395_9_385

      private boolean jj_3R_First_3395_9_385()
    • jj_3R_First_3393_9_384

      private boolean jj_3R_First_3393_9_384()
    • jj_3R_First_3391_9_383

      private boolean jj_3R_First_3391_9_383()
    • jj_3R_First_3388_9_382

      private boolean jj_3R_First_3388_9_382()
    • jj_3R_First_3386_9_381

      private boolean jj_3R_First_3386_9_381()
    • jj_3R_First_3385_5_148

      private boolean jj_3R_First_3385_5_148()
    • jj_3R_Skip_3353_19_380

      private boolean jj_3R_Skip_3353_19_380()
    • jj_3R_Skip_3352_19_379

      private boolean jj_3R_Skip_3352_19_379()
    • jj_3R_Skip_3351_10_378

      private boolean jj_3R_Skip_3351_10_378()
    • jj_3R_Skip_3349_5_147

      private boolean jj_3R_Skip_3349_5_147()
    • jj_3_357

      private boolean jj_3_357()
    • jj_3_356

      private boolean jj_3_356()
    • jj_3_176

      private boolean jj_3_176()
    • jj_3_175

      private boolean jj_3_175()
    • jj_3R_Top_3327_8_389

      private boolean jj_3R_Top_3327_8_389()
    • jj_3R_Top_3325_8_388

      private boolean jj_3R_Top_3325_8_388()
    • jj_3R_Top_3322_10_387

      private boolean jj_3R_Top_3322_10_387()
    • jj_3R_Top_3320_10_386

      private boolean jj_3R_Top_3320_10_386()
    • jj_3R_Top_3318_5_154

      private boolean jj_3R_Top_3318_5_154()
    • jj_3_355

      private boolean jj_3_355()
    • jj_3_354

      private boolean jj_3_354()
    • jj_3R_OptimizeFor_3302_5_614

      private boolean jj_3R_OptimizeFor_3302_5_614()
    • jj_3R_Offset_3221_76_208

      private boolean jj_3R_Offset_3221_76_208()
    • jj_3R_WithIsolation_3285_5_608

      private boolean jj_3R_WithIsolation_3285_5_608()
    • jj_3R_AlterExpression_6336_25_322

      private boolean jj_3R_AlterExpression_6336_25_322()
    • jj_3R_Fetch_3268_21_766

      private boolean jj_3R_Fetch_3268_21_766()
    • jj_3R_AlterExpression_6322_37_318

      private boolean jj_3R_AlterExpression_6322_37_318()
    • jj_3R_Fetch_3266_21_765

      private boolean jj_3R_Fetch_3266_21_765()
    • jj_3_353

      private boolean jj_3_353()
    • jj_3_352

      private boolean jj_3_352()
    • jj_3R_Fetch_3262_21_764

      private boolean jj_3R_Fetch_3262_21_764()
    • jj_3R_Fetch_3260_21_763

      private boolean jj_3R_Fetch_3260_21_763()
    • jj_3R_Fetch_3253_24_761

      private boolean jj_3R_Fetch_3253_24_761()
    • jj_3R_Fetch_3257_15_762

      private boolean jj_3R_Fetch_3257_15_762()
    • jj_3_351

      private boolean jj_3_351()
    • jj_3R_Fetch_3248_17_760

      private boolean jj_3R_Fetch_3248_17_760()
    • jj_3R_AlterExpression_6313_23_321

      private boolean jj_3R_AlterExpression_6313_23_321()
    • jj_3_350

      private boolean jj_3_350()
    • jj_3R_Fetch_3246_17_759

      private boolean jj_3R_Fetch_3246_17_759()
    • jj_3R_Fetch_3239_24_209

      private boolean jj_3R_Fetch_3239_24_209()
    • jj_3R_Fetch_3252_9_695

      private boolean jj_3R_Fetch_3252_9_695()
    • jj_3R_Fetch_3243_17_211

      private boolean jj_3R_Fetch_3243_17_211()
    • jj_3R_Fetch_3241_17_210

      private boolean jj_3R_Fetch_3241_17_210()
    • jj_3_361

      private boolean jj_3_361()
    • jj_3_360

      private boolean jj_3_360()
    • jj_3R_Offset_3221_30_207

      private boolean jj_3R_Offset_3221_30_207()
    • jj_3_173

      private boolean jj_3_173()
    • jj_3R_AlterExpression_6295_20_320

      private boolean jj_3R_AlterExpression_6295_20_320()
    • jj_3R_Fetch_3237_5_607

      private boolean jj_3R_Fetch_3237_5_607()
    • jj_3_359

      private boolean jj_3_359()
    • jj_3_172

      private boolean jj_3_172()
    • jj_3_358

      private boolean jj_3_358()
    • jj_3R_Offset_3215_5_606

      private boolean jj_3R_Offset_3215_5_606()
    • jj_3R_LimitBy_3201_5_166

      private boolean jj_3R_LimitBy_3201_5_166()
    • jj_3_171

      private boolean jj_3_171()
    • jj_3_170

      private boolean jj_3_170()
    • jj_3R_PlainLimit_3176_5_686

      private boolean jj_3R_PlainLimit_3176_5_686()
    • jj_3_169

      private boolean jj_3_169()
    • jj_3R_LimitWithOffset_3162_9_617

      private boolean jj_3R_LimitWithOffset_3162_9_617()
    • jj_3R_LimitWithOffset_3154_9_616

      private boolean jj_3R_LimitWithOffset_3154_9_616()
    • jj_3R_LimitWithOffset_3153_5_401

      private boolean jj_3R_LimitWithOffset_3153_5_401()
    • jj_3R_OrderByElement_3116_32_204

      private boolean jj_3R_OrderByElement_3116_32_204()
    • jj_3_168

      private boolean jj_3_168()
    • jj_3R_JdbcParameter_3137_5_284

      private boolean jj_3R_JdbcParameter_3137_5_284()
    • jj_3R_OrderByElement_3121_13_206

      private boolean jj_3R_OrderByElement_3121_13_206()
    • jj_3R_OrderByElement_3119_13_205

      private boolean jj_3R_OrderByElement_3119_13_205()
    • jj_3_167

      private boolean jj_3_167()
    • jj_3R_AlterExpressionColumnDropDefault_6196_5_545

      private boolean jj_3R_AlterExpressionColumnDropDefault_6196_5_545()
    • jj_3_165

      private boolean jj_3_165()
    • jj_3_166

      private boolean jj_3_166()
    • jj_3_164

      private boolean jj_3_164()
    • jj_3R_OrderByElement_3115_5_203

      private boolean jj_3R_OrderByElement_3115_5_203()
    • jj_3R_AlterExpressionColumnDropNotNull_6180_6_544

      private boolean jj_3R_AlterExpressionColumnDropNotNull_6180_6_544()
    • jj_3_163

      private boolean jj_3_163()
    • jj_3R_AlterExpressionColumnDropNotNull_6178_5_319

      private boolean jj_3R_AlterExpressionColumnDropNotNull_6178_5_319()
    • jj_3R_OrderByElements_3102_5_181

      private boolean jj_3R_OrderByElements_3102_5_181()
    • jj_3R_AlterExpressionColumnDataType_6163_7_543

      private boolean jj_3R_AlterExpressionColumnDataType_6163_7_543()
    • jj_3_349

      private boolean jj_3_349()
    • jj_3_348

      private boolean jj_3_348()
    • jj_3R_Qualify_3090_5_163

      private boolean jj_3R_Qualify_3090_5_163()
    • jj_3R_AlterExpressionColumnDataType_6160_5_317

      private boolean jj_3R_AlterExpressionColumnDataType_6160_5_317()
    • jj_3_347

      private boolean jj_3_347()
    • jj_3R_Having_3079_5_161

      private boolean jj_3R_Having_3079_5_161()
    • jj_3R_Truncate_6143_5_669

      private boolean jj_3R_Truncate_6143_5_669()
    • jj_3_162

      private boolean jj_3_162()
    • jj_3_161

      private boolean jj_3_161()
    • jj_la1_init_0

      private static void jj_la1_init_0()
    • jj_la1_init_1

      private static void jj_la1_init_1()
    • jj_la1_init_2

      private static void jj_la1_init_2()
    • jj_la1_init_3

      private static void jj_la1_init_3()
    • jj_la1_init_4

      private static void jj_la1_init_4()
    • jj_la1_init_5

      private static void jj_la1_init_5()
    • jj_la1_init_6

      private static void jj_la1_init_6()
    • jj_la1_init_7

      private static void jj_la1_init_7()
    • jj_la1_init_8

      private static void jj_la1_init_8()
    • jj_la1_init_9

      private static void jj_la1_init_9()
    • jj_la1_init_10

      private static void jj_la1_init_10()
    • jj_la1_init_11

      private static void jj_la1_init_11()
    • jj_la1_init_12

      private static void jj_la1_init_12()
    • jj_la1_init_13

      private static void jj_la1_init_13()
    • jj_la1_init_14

      private static void jj_la1_init_14()
    • ReInit

      public void ReInit(String s)
    • ReInit

      public void ReInit(Provider stream)
      Reinitialise.
    • ReInit

      public void ReInit(CCJSqlParserTokenManager tm)
      Reinitialise.
    • jj_consume_token

      private Token jj_consume_token(int kind) throws ParseException
      Throws:
      ParseException
    • jj_scan_token

      private boolean jj_scan_token(int kind)
    • getNextToken

      public final Token getNextToken()
      Get the next Token.
    • getToken

      public final Token getToken(int index)
      Get the specific Token.
    • jj_ntk_f

      private int jj_ntk_f()
    • jj_add_error_token

      private void jj_add_error_token(int kind, int pos)
    • generateParseException

      public ParseException generateParseException()
      Generate ParseException.
    • trace_enabled

      public final boolean trace_enabled()
      Trace enabled.
    • enable_tracing

      public final void enable_tracing()
      Enable tracing.
    • disable_tracing

      public final void disable_tracing()
      Disable tracing.
    • jj_rescan_token

      private void jj_rescan_token()
    • jj_save

      private void jj_save(int index, int xla)