Class PostgreSQLStatementParserBaseVisitor<T>
- java.lang.Object
-
- org.antlr.v4.runtime.tree.AbstractParseTreeVisitor<T>
-
- org.apache.shardingsphere.sql.parser.autogen.PostgreSQLStatementParserBaseVisitor<T>
-
- Type Parameters:
T- The return type of the visit operation. UseVoidfor operations with no return type.
- All Implemented Interfaces:
org.antlr.v4.runtime.tree.ParseTreeVisitor<T>,PostgreSQLStatementParserVisitor<T>
- Direct Known Subclasses:
PostgreSQLStatementVisitor
public class PostgreSQLStatementParserBaseVisitor<T> extends org.antlr.v4.runtime.tree.AbstractParseTreeVisitor<T> implements PostgreSQLStatementParserVisitor<T>
This class provides an empty implementation ofPostgreSQLStatementParserVisitor, which can be extended to create a visitor which only needs to handle a subset of the available methods.
-
-
Constructor Summary
Constructors Constructor Description PostgreSQLStatementParserBaseVisitor()
-
Method Summary
-
Methods inherited from class org.antlr.v4.runtime.tree.AbstractParseTreeVisitor
aggregateResult, defaultResult, shouldVisitNextChild, visit, visitChildren, visitErrorNode, visitTerminal
-
-
-
-
Method Detail
-
visitExecute
public T visitExecute(PostgreSQLStatementParser.ExecuteContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.execute().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitExecutein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSetTransaction
public T visitSetTransaction(PostgreSQLStatementParser.SetTransactionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.setTransaction().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSetTransactionin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBeginTransaction
public T visitBeginTransaction(PostgreSQLStatementParser.BeginTransactionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.beginTransaction().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitBeginTransactionin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCommit
public T visitCommit(PostgreSQLStatementParser.CommitContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.commit().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCommitin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSavepoint
public T visitSavepoint(PostgreSQLStatementParser.SavepointContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.savepoint().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSavepointin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAbort
public T visitAbort(PostgreSQLStatementParser.AbortContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.abort().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAbortin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitStartTransaction
public T visitStartTransaction(PostgreSQLStatementParser.StartTransactionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.startTransaction().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitStartTransactionin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEnd
public T visitEnd(PostgreSQLStatementParser.EndContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.end().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitEndin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRollback
public T visitRollback(PostgreSQLStatementParser.RollbackContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.rollback().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitRollbackin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitReleaseSavepoint
public T visitReleaseSavepoint(PostgreSQLStatementParser.ReleaseSavepointContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.releaseSavepoint().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitReleaseSavepointin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRollbackToSavepoint
public T visitRollbackToSavepoint(PostgreSQLStatementParser.RollbackToSavepointContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.rollbackToSavepoint().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitRollbackToSavepointin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCommitPrepared
public T visitCommitPrepared(PostgreSQLStatementParser.CommitPreparedContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.commitPrepared().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCommitPreparedin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRollbackPrepared
public T visitRollbackPrepared(PostgreSQLStatementParser.RollbackPreparedContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.rollbackPrepared().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitRollbackPreparedin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSetConstraints
public T visitSetConstraints(PostgreSQLStatementParser.SetConstraintsContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.setConstraints().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSetConstraintsin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitConstraintsSetMode
public T visitConstraintsSetMode(PostgreSQLStatementParser.ConstraintsSetModeContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.constraintsSetMode().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitConstraintsSetModein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitConstraintsSetList
public T visitConstraintsSetList(PostgreSQLStatementParser.ConstraintsSetListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.constraintsSetList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitConstraintsSetListin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLock
public T visitLock(PostgreSQLStatementParser.LockContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.lock().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitLockin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLockType
public T visitLockType(PostgreSQLStatementParser.LockTypeContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.lockType().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitLockTypein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPrepareTransaction
public T visitPrepareTransaction(PostgreSQLStatementParser.PrepareTransactionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.prepareTransaction().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitPrepareTransactionin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInsert
public T visitInsert(PostgreSQLStatementParser.InsertContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.insert().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitInsertin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInsertTarget
public T visitInsertTarget(PostgreSQLStatementParser.InsertTargetContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.insertTarget().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitInsertTargetin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInsertRest
public T visitInsertRest(PostgreSQLStatementParser.InsertRestContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.insertRest().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitInsertRestin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOverrideKind
public T visitOverrideKind(PostgreSQLStatementParser.OverrideKindContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.overrideKind().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitOverrideKindin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInsertColumnList
public T visitInsertColumnList(PostgreSQLStatementParser.InsertColumnListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.insertColumnList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitInsertColumnListin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInsertColumnItem
public T visitInsertColumnItem(PostgreSQLStatementParser.InsertColumnItemContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.insertColumnItem().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitInsertColumnItemin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOptOnConflict
public T visitOptOnConflict(PostgreSQLStatementParser.OptOnConflictContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.optOnConflict().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitOptOnConflictin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOptConfExpr
public T visitOptConfExpr(PostgreSQLStatementParser.OptConfExprContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.optConfExpr().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitOptConfExprin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUpdate
public T visitUpdate(PostgreSQLStatementParser.UpdateContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.update().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitUpdatein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSetClauseList
public T visitSetClauseList(PostgreSQLStatementParser.SetClauseListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.setClauseList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSetClauseListin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSetClause
public T visitSetClause(PostgreSQLStatementParser.SetClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.setClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSetClausein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSetTarget
public T visitSetTarget(PostgreSQLStatementParser.SetTargetContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.setTarget().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSetTargetin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSetTargetList
public T visitSetTargetList(PostgreSQLStatementParser.SetTargetListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.setTargetList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSetTargetListin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitReturningClause
public T visitReturningClause(PostgreSQLStatementParser.ReturningClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.returningClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitReturningClausein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDelete
public T visitDelete(PostgreSQLStatementParser.DeleteContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.delete().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDeletein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRelationExprOptAlias
public T visitRelationExprOptAlias(PostgreSQLStatementParser.RelationExprOptAliasContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.relationExprOptAlias().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitRelationExprOptAliasin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUsingClause
public T visitUsingClause(PostgreSQLStatementParser.UsingClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.usingClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitUsingClausein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSelect
public T visitSelect(PostgreSQLStatementParser.SelectContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.select().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSelectin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSelectWithParens
public T visitSelectWithParens(PostgreSQLStatementParser.SelectWithParensContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.selectWithParens().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSelectWithParensin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSelectNoParens
public T visitSelectNoParens(PostgreSQLStatementParser.SelectNoParensContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.selectNoParens().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSelectNoParensin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSelectClauseN
public T visitSelectClauseN(PostgreSQLStatementParser.SelectClauseNContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.selectClauseN().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSelectClauseNin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSimpleSelect
public T visitSimpleSelect(PostgreSQLStatementParser.SimpleSelectContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.simpleSelect().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSimpleSelectin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWithClause
public T visitWithClause(PostgreSQLStatementParser.WithClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.withClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitWithClausein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIntoClause
public T visitIntoClause(PostgreSQLStatementParser.IntoClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.intoClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitIntoClausein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOptTempTableName
public T visitOptTempTableName(PostgreSQLStatementParser.OptTempTableNameContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.optTempTableName().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitOptTempTableNamein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCteList
public T visitCteList(PostgreSQLStatementParser.CteListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.cteList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCteListin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCommonTableExpr
public T visitCommonTableExpr(PostgreSQLStatementParser.CommonTableExprContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.commonTableExpr().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCommonTableExprin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOptMaterialized
public T visitOptMaterialized(PostgreSQLStatementParser.OptMaterializedContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.optMaterialized().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitOptMaterializedin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOptNameList
public T visitOptNameList(PostgreSQLStatementParser.OptNameListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.optNameList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitOptNameListin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPreparableStmt
public T visitPreparableStmt(PostgreSQLStatementParser.PreparableStmtContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.preparableStmt().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitPreparableStmtin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitForLockingClause
public T visitForLockingClause(PostgreSQLStatementParser.ForLockingClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.forLockingClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitForLockingClausein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitForLockingItems
public T visitForLockingItems(PostgreSQLStatementParser.ForLockingItemsContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.forLockingItems().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitForLockingItemsin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitForLockingItem
public T visitForLockingItem(PostgreSQLStatementParser.ForLockingItemContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.forLockingItem().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitForLockingItemin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNowaitOrSkip
public T visitNowaitOrSkip(PostgreSQLStatementParser.NowaitOrSkipContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.nowaitOrSkip().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitNowaitOrSkipin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitForLockingStrength
public T visitForLockingStrength(PostgreSQLStatementParser.ForLockingStrengthContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.forLockingStrength().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitForLockingStrengthin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLockedRelsList
public T visitLockedRelsList(PostgreSQLStatementParser.LockedRelsListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.lockedRelsList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitLockedRelsListin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitQualifiedNameList
public T visitQualifiedNameList(PostgreSQLStatementParser.QualifiedNameListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.qualifiedNameList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitQualifiedNameListin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSelectLimit
public T visitSelectLimit(PostgreSQLStatementParser.SelectLimitContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.selectLimit().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSelectLimitin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitValuesClause
public T visitValuesClause(PostgreSQLStatementParser.ValuesClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.valuesClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitValuesClausein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLimitClause
public T visitLimitClause(PostgreSQLStatementParser.LimitClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.limitClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitLimitClausein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOffsetClause
public T visitOffsetClause(PostgreSQLStatementParser.OffsetClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.offsetClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitOffsetClausein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSelectLimitValue
public T visitSelectLimitValue(PostgreSQLStatementParser.SelectLimitValueContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.selectLimitValue().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSelectLimitValuein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSelectOffsetValue
public T visitSelectOffsetValue(PostgreSQLStatementParser.SelectOffsetValueContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.selectOffsetValue().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSelectOffsetValuein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSelectFetchValue
public T visitSelectFetchValue(PostgreSQLStatementParser.SelectFetchValueContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.selectFetchValue().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSelectFetchValuein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRowOrRows
public T visitRowOrRows(PostgreSQLStatementParser.RowOrRowsContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.rowOrRows().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitRowOrRowsin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFirstOrNext
public T visitFirstOrNext(PostgreSQLStatementParser.FirstOrNextContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.firstOrNext().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitFirstOrNextin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOnlyOrWithTies
public T visitOnlyOrWithTies(PostgreSQLStatementParser.OnlyOrWithTiesContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.onlyOrWithTies().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitOnlyOrWithTiesin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTargetList
public T visitTargetList(PostgreSQLStatementParser.TargetListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.targetList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTargetListin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTargetEl
public T visitTargetEl(PostgreSQLStatementParser.TargetElContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.targetEl().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTargetElin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGroupClause
public T visitGroupClause(PostgreSQLStatementParser.GroupClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.groupClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitGroupClausein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGroupByList
public T visitGroupByList(PostgreSQLStatementParser.GroupByListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.groupByList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitGroupByListin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGroupByItem
public T visitGroupByItem(PostgreSQLStatementParser.GroupByItemContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.groupByItem().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitGroupByItemin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEmptyGroupingSet
public T visitEmptyGroupingSet(PostgreSQLStatementParser.EmptyGroupingSetContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.emptyGroupingSet().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitEmptyGroupingSetin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRollupClause
public T visitRollupClause(PostgreSQLStatementParser.RollupClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.rollupClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitRollupClausein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCubeClause
public T visitCubeClause(PostgreSQLStatementParser.CubeClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.cubeClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCubeClausein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGroupingSetsClause
public T visitGroupingSetsClause(PostgreSQLStatementParser.GroupingSetsClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.groupingSetsClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitGroupingSetsClausein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWindowClause
public T visitWindowClause(PostgreSQLStatementParser.WindowClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.windowClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitWindowClausein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWindowDefinitionList
public T visitWindowDefinitionList(PostgreSQLStatementParser.WindowDefinitionListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.windowDefinitionList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitWindowDefinitionListin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWindowDefinition
public T visitWindowDefinition(PostgreSQLStatementParser.WindowDefinitionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.windowDefinition().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitWindowDefinitionin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWindowSpecification
public T visitWindowSpecification(PostgreSQLStatementParser.WindowSpecificationContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.windowSpecification().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitWindowSpecificationin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExistingWindowName
public T visitExistingWindowName(PostgreSQLStatementParser.ExistingWindowNameContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.existingWindowName().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitExistingWindowNamein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPartitionClause
public T visitPartitionClause(PostgreSQLStatementParser.PartitionClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.partitionClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitPartitionClausein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFrameClause
public T visitFrameClause(PostgreSQLStatementParser.FrameClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.frameClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitFrameClausein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFrameExtent
public T visitFrameExtent(PostgreSQLStatementParser.FrameExtentContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.frameExtent().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitFrameExtentin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFrameBound
public T visitFrameBound(PostgreSQLStatementParser.FrameBoundContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.frameBound().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitFrameBoundin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOptWindowExclusionClause
public T visitOptWindowExclusionClause(PostgreSQLStatementParser.OptWindowExclusionClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.optWindowExclusionClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitOptWindowExclusionClausein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlias
public T visitAlias(PostgreSQLStatementParser.AliasContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alias().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAliasin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFromClause
public T visitFromClause(PostgreSQLStatementParser.FromClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.fromClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitFromClausein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFromList
public T visitFromList(PostgreSQLStatementParser.FromListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.fromList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitFromListin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableReference
public T visitTableReference(PostgreSQLStatementParser.TableReferenceContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.tableReference().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTableReferencein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitJoinedTable
public T visitJoinedTable(PostgreSQLStatementParser.JoinedTableContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.joinedTable().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitJoinedTablein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCrossJoinType
public T visitCrossJoinType(PostgreSQLStatementParser.CrossJoinTypeContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.crossJoinType().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCrossJoinTypein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInnerJoinType
public T visitInnerJoinType(PostgreSQLStatementParser.InnerJoinTypeContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.innerJoinType().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitInnerJoinTypein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOuterJoinType
public T visitOuterJoinType(PostgreSQLStatementParser.OuterJoinTypeContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.outerJoinType().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitOuterJoinTypein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNaturalJoinType
public T visitNaturalJoinType(PostgreSQLStatementParser.NaturalJoinTypeContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.naturalJoinType().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitNaturalJoinTypein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitJoinOuter
public T visitJoinOuter(PostgreSQLStatementParser.JoinOuterContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.joinOuter().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitJoinOuterin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitJoinQual
public T visitJoinQual(PostgreSQLStatementParser.JoinQualContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.joinQual().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitJoinQualin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRelationExpr
public T visitRelationExpr(PostgreSQLStatementParser.RelationExprContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.relationExpr().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitRelationExprin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWhereClause
public T visitWhereClause(PostgreSQLStatementParser.WhereClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.whereClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitWhereClausein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWhereOrCurrentClause
public T visitWhereOrCurrentClause(PostgreSQLStatementParser.WhereOrCurrentClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.whereOrCurrentClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitWhereOrCurrentClausein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitHavingClause
public T visitHavingClause(PostgreSQLStatementParser.HavingClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.havingClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitHavingClausein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDoStatement
public T visitDoStatement(PostgreSQLStatementParser.DoStatementContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.doStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDoStatementin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDostmtOptList
public T visitDostmtOptList(PostgreSQLStatementParser.DostmtOptListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dostmtOptList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDostmtOptListin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDostmtOptItem
public T visitDostmtOptItem(PostgreSQLStatementParser.DostmtOptItemContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dostmtOptItem().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDostmtOptItemin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCheckpoint
public T visitCheckpoint(PostgreSQLStatementParser.CheckpointContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.checkpoint().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCheckpointin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCopy
public T visitCopy(PostgreSQLStatementParser.CopyContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.copy().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCopyin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCopyWithTableOrQuery
public T visitCopyWithTableOrQuery(PostgreSQLStatementParser.CopyWithTableOrQueryContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.copyWithTableOrQuery().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCopyWithTableOrQueryin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCopyOptionList
public T visitCopyOptionList(PostgreSQLStatementParser.CopyOptionListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.copyOptionList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCopyOptionListin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCopyOption
public T visitCopyOption(PostgreSQLStatementParser.CopyOptionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.copyOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCopyOptionin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCopyWithTableOrQueryBinaryCsv
public T visitCopyWithTableOrQueryBinaryCsv(PostgreSQLStatementParser.CopyWithTableOrQueryBinaryCsvContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.copyWithTableOrQueryBinaryCsv().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCopyWithTableOrQueryBinaryCsvin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCopyWithTableBinary
public T visitCopyWithTableBinary(PostgreSQLStatementParser.CopyWithTableBinaryContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.copyWithTableBinary().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCopyWithTableBinaryin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitParameterMarker
public T visitParameterMarker(PostgreSQLStatementParser.ParameterMarkerContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.parameterMarker().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitParameterMarkerin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitReservedKeyword
public T visitReservedKeyword(PostgreSQLStatementParser.ReservedKeywordContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.reservedKeyword().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitReservedKeywordin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNumberLiterals
public T visitNumberLiterals(PostgreSQLStatementParser.NumberLiteralsContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.numberLiterals().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitNumberLiteralsin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLiteralsType
public T visitLiteralsType(PostgreSQLStatementParser.LiteralsTypeContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.literalsType().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitLiteralsTypein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIdentifier
public T visitIdentifier(PostgreSQLStatementParser.IdentifierContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.identifier().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitIdentifierin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUescape
public T visitUescape(PostgreSQLStatementParser.UescapeContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.uescape().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitUescapein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUnreservedWord
public T visitUnreservedWord(PostgreSQLStatementParser.UnreservedWordContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.unreservedWord().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitUnreservedWordin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTypeFuncNameKeyword
public T visitTypeFuncNameKeyword(PostgreSQLStatementParser.TypeFuncNameKeywordContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.typeFuncNameKeyword().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTypeFuncNameKeywordin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSchemaName
public T visitSchemaName(PostgreSQLStatementParser.SchemaNameContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.schemaName().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSchemaNamein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableName
public T visitTableName(PostgreSQLStatementParser.TableNameContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.tableName().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTableNamein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitColumnName
public T visitColumnName(PostgreSQLStatementParser.ColumnNameContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.columnName().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitColumnNamein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOwner
public T visitOwner(PostgreSQLStatementParser.OwnerContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.owner().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitOwnerin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitName
public T visitName(PostgreSQLStatementParser.NameContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.name().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitNamein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableNames
public T visitTableNames(PostgreSQLStatementParser.TableNamesContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.tableNames().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTableNamesin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitColumnNames
public T visitColumnNames(PostgreSQLStatementParser.ColumnNamesContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.columnNames().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitColumnNamesin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCollationName
public T visitCollationName(PostgreSQLStatementParser.CollationNameContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.collationName().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCollationNamein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIndexName
public T visitIndexName(PostgreSQLStatementParser.IndexNameContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.indexName().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitIndexNamein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitConstraintName
public T visitConstraintName(PostgreSQLStatementParser.ConstraintNameContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.constraintName().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitConstraintNamein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPrimaryKey
public T visitPrimaryKey(PostgreSQLStatementParser.PrimaryKeyContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.primaryKey().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitPrimaryKeyin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAndOperator
public T visitAndOperator(PostgreSQLStatementParser.AndOperatorContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.andOperator().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAndOperatorin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOrOperator
public T visitOrOperator(PostgreSQLStatementParser.OrOperatorContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.orOperator().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitOrOperatorin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitComparisonOperator
public T visitComparisonOperator(PostgreSQLStatementParser.ComparisonOperatorContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.comparisonOperator().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitComparisonOperatorin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPatternMatchingOperator
public T visitPatternMatchingOperator(PostgreSQLStatementParser.PatternMatchingOperatorContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.patternMatchingOperator().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitPatternMatchingOperatorin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCursorName
public T visitCursorName(PostgreSQLStatementParser.CursorNameContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.cursorName().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCursorNamein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAExpr
public T visitAExpr(PostgreSQLStatementParser.AExprContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.aExpr().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAExprin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBExpr
public T visitBExpr(PostgreSQLStatementParser.BExprContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.bExpr().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitBExprin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCExpr
public T visitCExpr(PostgreSQLStatementParser.CExprContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.cExpr().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCExprin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIndirection
public T visitIndirection(PostgreSQLStatementParser.IndirectionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.indirection().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitIndirectionin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOptIndirection
public T visitOptIndirection(PostgreSQLStatementParser.OptIndirectionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.optIndirection().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitOptIndirectionin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIndirectionEl
public T visitIndirectionEl(PostgreSQLStatementParser.IndirectionElContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.indirectionEl().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitIndirectionElin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSliceBound
public T visitSliceBound(PostgreSQLStatementParser.SliceBoundContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.sliceBound().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSliceBoundin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInExpr
public T visitInExpr(PostgreSQLStatementParser.InExprContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.inExpr().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitInExprin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCaseExpr
public T visitCaseExpr(PostgreSQLStatementParser.CaseExprContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.caseExpr().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCaseExprin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWhenClauseList
public T visitWhenClauseList(PostgreSQLStatementParser.WhenClauseListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.whenClauseList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitWhenClauseListin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWhenClause
public T visitWhenClause(PostgreSQLStatementParser.WhenClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.whenClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitWhenClausein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCaseDefault
public T visitCaseDefault(PostgreSQLStatementParser.CaseDefaultContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.caseDefault().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCaseDefaultin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCaseArg
public T visitCaseArg(PostgreSQLStatementParser.CaseArgContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.caseArg().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCaseArgin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitColumnref
public T visitColumnref(PostgreSQLStatementParser.ColumnrefContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.columnref().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitColumnrefin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitQualOp
public T visitQualOp(PostgreSQLStatementParser.QualOpContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.qualOp().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitQualOpin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSubqueryOp
public T visitSubqueryOp(PostgreSQLStatementParser.SubqueryOpContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.subqueryOp().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSubqueryOpin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAllOp
public T visitAllOp(PostgreSQLStatementParser.AllOpContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.allOp().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAllOpin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOp
public T visitOp(PostgreSQLStatementParser.OpContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.op().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitOpin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMathOperator
public T visitMathOperator(PostgreSQLStatementParser.MathOperatorContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.mathOperator().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitMathOperatorin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitJsonExtract
public T visitJsonExtract(PostgreSQLStatementParser.JsonExtractContext ctx)
Visit a parse tree produced by thejsonExtractlabeled alternative inPostgreSQLStatementParser.jsonOperator().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitJsonExtractin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitJsonExtractText
public T visitJsonExtractText(PostgreSQLStatementParser.JsonExtractTextContext ctx)
Visit a parse tree produced by thejsonExtractTextlabeled alternative inPostgreSQLStatementParser.jsonOperator().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitJsonExtractTextin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitJsonPathExtract
public T visitJsonPathExtract(PostgreSQLStatementParser.JsonPathExtractContext ctx)
Visit a parse tree produced by thejsonPathExtractlabeled alternative inPostgreSQLStatementParser.jsonOperator().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitJsonPathExtractin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitJsonPathExtractText
public T visitJsonPathExtractText(PostgreSQLStatementParser.JsonPathExtractTextContext ctx)
Visit a parse tree produced by thejsonPathExtractTextlabeled alternative inPostgreSQLStatementParser.jsonOperator().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitJsonPathExtractTextin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitJsonbContainRight
public T visitJsonbContainRight(PostgreSQLStatementParser.JsonbContainRightContext ctx)
Visit a parse tree produced by thejsonbContainRightlabeled alternative inPostgreSQLStatementParser.jsonOperator().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitJsonbContainRightin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitJsonbContainLeft
public T visitJsonbContainLeft(PostgreSQLStatementParser.JsonbContainLeftContext ctx)
Visit a parse tree produced by thejsonbContainLeftlabeled alternative inPostgreSQLStatementParser.jsonOperator().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitJsonbContainLeftin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitJsonbContainTopKey
public T visitJsonbContainTopKey(PostgreSQLStatementParser.JsonbContainTopKeyContext ctx)
Visit a parse tree produced by thejsonbContainTopKeylabeled alternative inPostgreSQLStatementParser.jsonOperator().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitJsonbContainTopKeyin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitJsonbContainAnyTopKey
public T visitJsonbContainAnyTopKey(PostgreSQLStatementParser.JsonbContainAnyTopKeyContext ctx)
Visit a parse tree produced by thejsonbContainAnyTopKeylabeled alternative inPostgreSQLStatementParser.jsonOperator().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitJsonbContainAnyTopKeyin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitJsonbContainAllTopKey
public T visitJsonbContainAllTopKey(PostgreSQLStatementParser.JsonbContainAllTopKeyContext ctx)
Visit a parse tree produced by thejsonbContainAllTopKeylabeled alternative inPostgreSQLStatementParser.jsonOperator().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitJsonbContainAllTopKeyin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitJsonbConcat
public T visitJsonbConcat(PostgreSQLStatementParser.JsonbConcatContext ctx)
Visit a parse tree produced by thejsonbConcatlabeled alternative inPostgreSQLStatementParser.jsonOperator().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitJsonbConcatin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitJsonbDelete
public T visitJsonbDelete(PostgreSQLStatementParser.JsonbDeleteContext ctx)
Visit a parse tree produced by thejsonbDeletelabeled alternative inPostgreSQLStatementParser.jsonOperator().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitJsonbDeletein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitJsonbPathDelete
public T visitJsonbPathDelete(PostgreSQLStatementParser.JsonbPathDeleteContext ctx)
Visit a parse tree produced by thejsonbPathDeletelabeled alternative inPostgreSQLStatementParser.jsonOperator().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitJsonbPathDeletein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitJsonbPathContainAnyValue
public T visitJsonbPathContainAnyValue(PostgreSQLStatementParser.JsonbPathContainAnyValueContext ctx)
Visit a parse tree produced by thejsonbPathContainAnyValuelabeled alternative inPostgreSQLStatementParser.jsonOperator().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitJsonbPathContainAnyValuein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitJsonbPathPredicateCheck
public T visitJsonbPathPredicateCheck(PostgreSQLStatementParser.JsonbPathPredicateCheckContext ctx)
Visit a parse tree produced by thejsonbPathPredicateChecklabeled alternative inPostgreSQLStatementParser.jsonOperator().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitJsonbPathPredicateCheckin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGeometricOperator
public T visitGeometricOperator(PostgreSQLStatementParser.GeometricOperatorContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.geometricOperator().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitGeometricOperatorin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitQualAllOp
public T visitQualAllOp(PostgreSQLStatementParser.QualAllOpContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.qualAllOp().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitQualAllOpin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAscDesc
public T visitAscDesc(PostgreSQLStatementParser.AscDescContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.ascDesc().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAscDescin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAnyOperator
public T visitAnyOperator(PostgreSQLStatementParser.AnyOperatorContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.anyOperator().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAnyOperatorin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWindowExclusionClause
public T visitWindowExclusionClause(PostgreSQLStatementParser.WindowExclusionClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.windowExclusionClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitWindowExclusionClausein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRow
public T visitRow(PostgreSQLStatementParser.RowContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.row().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitRowin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExplicitRow
public T visitExplicitRow(PostgreSQLStatementParser.ExplicitRowContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.explicitRow().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitExplicitRowin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitImplicitRow
public T visitImplicitRow(PostgreSQLStatementParser.ImplicitRowContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.implicitRow().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitImplicitRowin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSubType
public T visitSubType(PostgreSQLStatementParser.SubTypeContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.subType().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSubTypein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitArrayExpr
public T visitArrayExpr(PostgreSQLStatementParser.ArrayExprContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.arrayExpr().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitArrayExprin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitArrayExprList
public T visitArrayExprList(PostgreSQLStatementParser.ArrayExprListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.arrayExprList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitArrayExprListin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFuncArgList
public T visitFuncArgList(PostgreSQLStatementParser.FuncArgListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.funcArgList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitFuncArgListin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitParamName
public T visitParamName(PostgreSQLStatementParser.ParamNameContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.paramName().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitParamNamein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFuncArgExpr
public T visitFuncArgExpr(PostgreSQLStatementParser.FuncArgExprContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.funcArgExpr().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitFuncArgExprin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTypeList
public T visitTypeList(PostgreSQLStatementParser.TypeListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.typeList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTypeListin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFuncApplication
public T visitFuncApplication(PostgreSQLStatementParser.FuncApplicationContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.funcApplication().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitFuncApplicationin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFuncName
public T visitFuncName(PostgreSQLStatementParser.FuncNameContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.funcName().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitFuncNamein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAexprConst
public T visitAexprConst(PostgreSQLStatementParser.AexprConstContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.aexprConst().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAexprConstin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNumberConst
public T visitNumberConst(PostgreSQLStatementParser.NumberConstContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.numberConst().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitNumberConstin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitQualifiedName
public T visitQualifiedName(PostgreSQLStatementParser.QualifiedNameContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.qualifiedName().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitQualifiedNamein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitColId
public T visitColId(PostgreSQLStatementParser.ColIdContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.colId().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitColIdin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitChannelName
public T visitChannelName(PostgreSQLStatementParser.ChannelNameContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.channelName().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitChannelNamein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTypeFunctionName
public T visitTypeFunctionName(PostgreSQLStatementParser.TypeFunctionNameContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.typeFunctionName().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTypeFunctionNamein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFunctionTable
public T visitFunctionTable(PostgreSQLStatementParser.FunctionTableContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.functionTable().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitFunctionTablein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitXmlTable
public T visitXmlTable(PostgreSQLStatementParser.XmlTableContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.xmlTable().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitXmlTablein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitXmlTableColumnList
public T visitXmlTableColumnList(PostgreSQLStatementParser.XmlTableColumnListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.xmlTableColumnList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitXmlTableColumnListin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitXmlTableColumnEl
public T visitXmlTableColumnEl(PostgreSQLStatementParser.XmlTableColumnElContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.xmlTableColumnEl().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitXmlTableColumnElin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitXmlTableColumnOptionList
public T visitXmlTableColumnOptionList(PostgreSQLStatementParser.XmlTableColumnOptionListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.xmlTableColumnOptionList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitXmlTableColumnOptionListin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitXmlTableColumnOptionEl
public T visitXmlTableColumnOptionEl(PostgreSQLStatementParser.XmlTableColumnOptionElContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.xmlTableColumnOptionEl().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitXmlTableColumnOptionElin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitXmlNamespaceList
public T visitXmlNamespaceList(PostgreSQLStatementParser.XmlNamespaceListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.xmlNamespaceList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitXmlNamespaceListin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitXmlNamespaceEl
public T visitXmlNamespaceEl(PostgreSQLStatementParser.XmlNamespaceElContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.xmlNamespaceEl().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitXmlNamespaceElin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFuncExpr
public T visitFuncExpr(PostgreSQLStatementParser.FuncExprContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.funcExpr().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitFuncExprin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWithinGroupClause
public T visitWithinGroupClause(PostgreSQLStatementParser.WithinGroupClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.withinGroupClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitWithinGroupClausein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFilterClause
public T visitFilterClause(PostgreSQLStatementParser.FilterClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.filterClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitFilterClausein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFunctionExprWindowless
public T visitFunctionExprWindowless(PostgreSQLStatementParser.FunctionExprWindowlessContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.functionExprWindowless().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitFunctionExprWindowlessin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOrdinality
public T visitOrdinality(PostgreSQLStatementParser.OrdinalityContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.ordinality().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitOrdinalityin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFunctionExprCommonSubexpr
public T visitFunctionExprCommonSubexpr(PostgreSQLStatementParser.FunctionExprCommonSubexprContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.functionExprCommonSubexpr().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitFunctionExprCommonSubexprin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTypeName
public T visitTypeName(PostgreSQLStatementParser.TypeNameContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.typeName().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTypeNamein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSimpleTypeName
public T visitSimpleTypeName(PostgreSQLStatementParser.SimpleTypeNameContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.simpleTypeName().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSimpleTypeNamein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitConstTypeName
public T visitConstTypeName(PostgreSQLStatementParser.ConstTypeNameContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.constTypeName().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitConstTypeNamein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExprList
public T visitExprList(PostgreSQLStatementParser.ExprListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.exprList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitExprListin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExtractList
public T visitExtractList(PostgreSQLStatementParser.ExtractListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.extractList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitExtractListin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExtractArg
public T visitExtractArg(PostgreSQLStatementParser.ExtractArgContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.extractArg().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitExtractArgin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGenericType
public T visitGenericType(PostgreSQLStatementParser.GenericTypeContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.genericType().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitGenericTypein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTypeModifiers
public T visitTypeModifiers(PostgreSQLStatementParser.TypeModifiersContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.typeModifiers().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTypeModifiersin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNumeric
public T visitNumeric(PostgreSQLStatementParser.NumericContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.numeric().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitNumericin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitConstDatetime
public T visitConstDatetime(PostgreSQLStatementParser.ConstDatetimeContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.constDatetime().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitConstDatetimein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTimezone
public T visitTimezone(PostgreSQLStatementParser.TimezoneContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.timezone().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTimezonein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCharacter
public T visitCharacter(PostgreSQLStatementParser.CharacterContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.character().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCharacterin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCharacterWithLength
public T visitCharacterWithLength(PostgreSQLStatementParser.CharacterWithLengthContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.characterWithLength().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCharacterWithLengthin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCharacterWithoutLength
public T visitCharacterWithoutLength(PostgreSQLStatementParser.CharacterWithoutLengthContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.characterWithoutLength().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCharacterWithoutLengthin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCharacterClause
public T visitCharacterClause(PostgreSQLStatementParser.CharacterClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.characterClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCharacterClausein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOptFloat
public T visitOptFloat(PostgreSQLStatementParser.OptFloatContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.optFloat().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitOptFloatin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAttrs
public T visitAttrs(PostgreSQLStatementParser.AttrsContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.attrs().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAttrsin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAttrName
public T visitAttrName(PostgreSQLStatementParser.AttrNameContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.attrName().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAttrNamein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitColLable
public T visitColLable(PostgreSQLStatementParser.ColLableContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.colLable().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitColLablein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBit
public T visitBit(PostgreSQLStatementParser.BitContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.bit().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitBitin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBitWithLength
public T visitBitWithLength(PostgreSQLStatementParser.BitWithLengthContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.bitWithLength().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitBitWithLengthin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBitWithoutLength
public T visitBitWithoutLength(PostgreSQLStatementParser.BitWithoutLengthContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.bitWithoutLength().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitBitWithoutLengthin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitConstInterval
public T visitConstInterval(PostgreSQLStatementParser.ConstIntervalContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.constInterval().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitConstIntervalin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOptInterval
public T visitOptInterval(PostgreSQLStatementParser.OptIntervalContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.optInterval().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitOptIntervalin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOptArrayBounds
public T visitOptArrayBounds(PostgreSQLStatementParser.OptArrayBoundsContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.optArrayBounds().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitOptArrayBoundsin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIntervalSecond
public T visitIntervalSecond(PostgreSQLStatementParser.IntervalSecondContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.intervalSecond().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitIntervalSecondin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUnicodeNormalForm
public T visitUnicodeNormalForm(PostgreSQLStatementParser.UnicodeNormalFormContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.unicodeNormalForm().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitUnicodeNormalFormin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTrimList
public T visitTrimList(PostgreSQLStatementParser.TrimListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.trimList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTrimListin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOverlayList
public T visitOverlayList(PostgreSQLStatementParser.OverlayListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.overlayList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitOverlayListin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOverlayPlacing
public T visitOverlayPlacing(PostgreSQLStatementParser.OverlayPlacingContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.overlayPlacing().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitOverlayPlacingin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSubstrFrom
public T visitSubstrFrom(PostgreSQLStatementParser.SubstrFromContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.substrFrom().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSubstrFromin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSubstrFor
public T visitSubstrFor(PostgreSQLStatementParser.SubstrForContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.substrFor().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSubstrForin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPositionList
public T visitPositionList(PostgreSQLStatementParser.PositionListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.positionList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitPositionListin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSubstrList
public T visitSubstrList(PostgreSQLStatementParser.SubstrListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.substrList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSubstrListin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitXmlAttributes
public T visitXmlAttributes(PostgreSQLStatementParser.XmlAttributesContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.xmlAttributes().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitXmlAttributesin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitXmlAttributeList
public T visitXmlAttributeList(PostgreSQLStatementParser.XmlAttributeListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.xmlAttributeList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitXmlAttributeListin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitXmlAttributeEl
public T visitXmlAttributeEl(PostgreSQLStatementParser.XmlAttributeElContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.xmlAttributeEl().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitXmlAttributeElin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitXmlExistsArgument
public T visitXmlExistsArgument(PostgreSQLStatementParser.XmlExistsArgumentContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.xmlExistsArgument().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitXmlExistsArgumentin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitXmlPassingMech
public T visitXmlPassingMech(PostgreSQLStatementParser.XmlPassingMechContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.xmlPassingMech().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitXmlPassingMechin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDocumentOrContent
public T visitDocumentOrContent(PostgreSQLStatementParser.DocumentOrContentContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.documentOrContent().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDocumentOrContentin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitXmlWhitespaceOption
public T visitXmlWhitespaceOption(PostgreSQLStatementParser.XmlWhitespaceOptionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.xmlWhitespaceOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitXmlWhitespaceOptionin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitXmlRootVersion
public T visitXmlRootVersion(PostgreSQLStatementParser.XmlRootVersionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.xmlRootVersion().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitXmlRootVersionin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitXmlRootStandalone
public T visitXmlRootStandalone(PostgreSQLStatementParser.XmlRootStandaloneContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.xmlRootStandalone().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitXmlRootStandalonein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRowsFromItem
public T visitRowsFromItem(PostgreSQLStatementParser.RowsFromItemContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.rowsFromItem().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitRowsFromItemin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRowsFromList
public T visitRowsFromList(PostgreSQLStatementParser.RowsFromListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.rowsFromList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitRowsFromListin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitColumnDefList
public T visitColumnDefList(PostgreSQLStatementParser.ColumnDefListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.columnDefList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitColumnDefListin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableFuncElementList
public T visitTableFuncElementList(PostgreSQLStatementParser.TableFuncElementListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.tableFuncElementList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTableFuncElementListin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableFuncElement
public T visitTableFuncElement(PostgreSQLStatementParser.TableFuncElementContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.tableFuncElement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTableFuncElementin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCollateClause
public T visitCollateClause(PostgreSQLStatementParser.CollateClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.collateClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCollateClausein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAnyName
public T visitAnyName(PostgreSQLStatementParser.AnyNameContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.anyName().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAnyNamein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAliasClause
public T visitAliasClause(PostgreSQLStatementParser.AliasClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.aliasClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAliasClausein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNameList
public T visitNameList(PostgreSQLStatementParser.NameListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.nameList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitNameListin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFuncAliasClause
public T visitFuncAliasClause(PostgreSQLStatementParser.FuncAliasClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.funcAliasClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitFuncAliasClausein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTablesampleClause
public T visitTablesampleClause(PostgreSQLStatementParser.TablesampleClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.tablesampleClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTablesampleClausein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRepeatableClause
public T visitRepeatableClause(PostgreSQLStatementParser.RepeatableClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.repeatableClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitRepeatableClausein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAllOrDistinct
public T visitAllOrDistinct(PostgreSQLStatementParser.AllOrDistinctContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.allOrDistinct().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAllOrDistinctin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSortClause
public T visitSortClause(PostgreSQLStatementParser.SortClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.sortClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSortClausein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSortbyList
public T visitSortbyList(PostgreSQLStatementParser.SortbyListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.sortbyList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSortbyListin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSortby
public T visitSortby(PostgreSQLStatementParser.SortbyContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.sortby().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSortbyin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNullsOrder
public T visitNullsOrder(PostgreSQLStatementParser.NullsOrderContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.nullsOrder().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitNullsOrderin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDistinctClause
public T visitDistinctClause(PostgreSQLStatementParser.DistinctClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.distinctClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDistinctClausein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDistinct
public T visitDistinct(PostgreSQLStatementParser.DistinctContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.distinct().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDistinctin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOverClause
public T visitOverClause(PostgreSQLStatementParser.OverClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.overClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitOverClausein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWindowName
public T visitWindowName(PostgreSQLStatementParser.WindowNameContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.windowName().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitWindowNamein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIndexParams
public T visitIndexParams(PostgreSQLStatementParser.IndexParamsContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.indexParams().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitIndexParamsin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIndexElemOptions
public T visitIndexElemOptions(PostgreSQLStatementParser.IndexElemOptionsContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.indexElemOptions().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitIndexElemOptionsin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIndexElem
public T visitIndexElem(PostgreSQLStatementParser.IndexElemContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.indexElem().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitIndexElemin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCollate
public T visitCollate(PostgreSQLStatementParser.CollateContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.collate().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCollatein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOptClass
public T visitOptClass(PostgreSQLStatementParser.OptClassContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.optClass().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitOptClassin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitReloptions
public T visitReloptions(PostgreSQLStatementParser.ReloptionsContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.reloptions().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitReloptionsin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitReloptionList
public T visitReloptionList(PostgreSQLStatementParser.ReloptionListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.reloptionList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitReloptionListin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitReloptionElem
public T visitReloptionElem(PostgreSQLStatementParser.ReloptionElemContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.reloptionElem().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitReloptionElemin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDefArg
public T visitDefArg(PostgreSQLStatementParser.DefArgContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.defArg().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDefArgin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFuncType
public T visitFuncType(PostgreSQLStatementParser.FuncTypeContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.funcType().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitFuncTypein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDataType
public T visitDataType(PostgreSQLStatementParser.DataTypeContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dataType().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDataTypein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDataTypeName
public T visitDataTypeName(PostgreSQLStatementParser.DataTypeNameContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dataTypeName().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDataTypeNamein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDataTypeLength
public T visitDataTypeLength(PostgreSQLStatementParser.DataTypeLengthContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dataTypeLength().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDataTypeLengthin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCharacterSet
public T visitCharacterSet(PostgreSQLStatementParser.CharacterSetContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.characterSet().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCharacterSetin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIgnoredIdentifier
public T visitIgnoredIdentifier(PostgreSQLStatementParser.IgnoredIdentifierContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.ignoredIdentifier().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitIgnoredIdentifierin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIgnoredIdentifiers
public T visitIgnoredIdentifiers(PostgreSQLStatementParser.IgnoredIdentifiersContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.ignoredIdentifiers().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitIgnoredIdentifiersin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSignedIconst
public T visitSignedIconst(PostgreSQLStatementParser.SignedIconstContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.signedIconst().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSignedIconstin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBooleanOrString
public T visitBooleanOrString(PostgreSQLStatementParser.BooleanOrStringContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.booleanOrString().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitBooleanOrStringin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNonReservedWord
public T visitNonReservedWord(PostgreSQLStatementParser.NonReservedWordContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.nonReservedWord().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitNonReservedWordin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitColNameKeyword
public T visitColNameKeyword(PostgreSQLStatementParser.ColNameKeywordContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.colNameKeyword().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitColNameKeywordin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDatabaseName
public T visitDatabaseName(PostgreSQLStatementParser.DatabaseNameContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.databaseName().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDatabaseNamein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRoleSpec
public T visitRoleSpec(PostgreSQLStatementParser.RoleSpecContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.roleSpec().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitRoleSpecin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitVarName
public T visitVarName(PostgreSQLStatementParser.VarNameContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.varName().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitVarNamein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitVarList
public T visitVarList(PostgreSQLStatementParser.VarListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.varList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitVarListin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitVarValue
public T visitVarValue(PostgreSQLStatementParser.VarValueContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.varValue().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitVarValuein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitZoneValue
public T visitZoneValue(PostgreSQLStatementParser.ZoneValueContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.zoneValue().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitZoneValuein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNumericOnly
public T visitNumericOnly(PostgreSQLStatementParser.NumericOnlyContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.numericOnly().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitNumericOnlyin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIsoLevel
public T visitIsoLevel(PostgreSQLStatementParser.IsoLevelContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.isoLevel().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitIsoLevelin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitColumnDef
public T visitColumnDef(PostgreSQLStatementParser.ColumnDefContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.columnDef().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitColumnDefin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitColQualList
public T visitColQualList(PostgreSQLStatementParser.ColQualListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.colQualList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitColQualListin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitColConstraint
public T visitColConstraint(PostgreSQLStatementParser.ColConstraintContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.colConstraint().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitColConstraintin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitConstraintAttr
public T visitConstraintAttr(PostgreSQLStatementParser.ConstraintAttrContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.constraintAttr().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitConstraintAttrin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitColConstraintElem
public T visitColConstraintElem(PostgreSQLStatementParser.ColConstraintElemContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.colConstraintElem().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitColConstraintElemin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitParenthesizedSeqOptList
public T visitParenthesizedSeqOptList(PostgreSQLStatementParser.ParenthesizedSeqOptListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.parenthesizedSeqOptList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitParenthesizedSeqOptListin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSeqOptList
public T visitSeqOptList(PostgreSQLStatementParser.SeqOptListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.seqOptList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSeqOptListin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSeqOptElem
public T visitSeqOptElem(PostgreSQLStatementParser.SeqOptElemContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.seqOptElem().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSeqOptElemin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOptColumnList
public T visitOptColumnList(PostgreSQLStatementParser.OptColumnListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.optColumnList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitOptColumnListin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitColumnElem
public T visitColumnElem(PostgreSQLStatementParser.ColumnElemContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.columnElem().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitColumnElemin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitColumnList
public T visitColumnList(PostgreSQLStatementParser.ColumnListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.columnList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitColumnListin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGeneratedWhen
public T visitGeneratedWhen(PostgreSQLStatementParser.GeneratedWhenContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.generatedWhen().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitGeneratedWhenin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNoInherit
public T visitNoInherit(PostgreSQLStatementParser.NoInheritContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.noInherit().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitNoInheritin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitConsTableSpace
public T visitConsTableSpace(PostgreSQLStatementParser.ConsTableSpaceContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.consTableSpace().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitConsTableSpacein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDefinition
public T visitDefinition(PostgreSQLStatementParser.DefinitionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.definition().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDefinitionin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDefList
public T visitDefList(PostgreSQLStatementParser.DefListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.defList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDefListin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDefElem
public T visitDefElem(PostgreSQLStatementParser.DefElemContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.defElem().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDefElemin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitColLabel
public T visitColLabel(PostgreSQLStatementParser.ColLabelContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.colLabel().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitColLabelin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitKeyActions
public T visitKeyActions(PostgreSQLStatementParser.KeyActionsContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.keyActions().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitKeyActionsin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitKeyDelete
public T visitKeyDelete(PostgreSQLStatementParser.KeyDeleteContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.keyDelete().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitKeyDeletein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitKeyUpdate
public T visitKeyUpdate(PostgreSQLStatementParser.KeyUpdateContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.keyUpdate().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitKeyUpdatein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitKeyAction
public T visitKeyAction(PostgreSQLStatementParser.KeyActionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.keyAction().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitKeyActionin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitKeyMatch
public T visitKeyMatch(PostgreSQLStatementParser.KeyMatchContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.keyMatch().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitKeyMatchin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateGenericOptions
public T visitCreateGenericOptions(PostgreSQLStatementParser.CreateGenericOptionsContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createGenericOptions().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCreateGenericOptionsin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGenericOptionList
public T visitGenericOptionList(PostgreSQLStatementParser.GenericOptionListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.genericOptionList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitGenericOptionListin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGenericOptionElem
public T visitGenericOptionElem(PostgreSQLStatementParser.GenericOptionElemContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.genericOptionElem().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitGenericOptionElemin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGenericOptionArg
public T visitGenericOptionArg(PostgreSQLStatementParser.GenericOptionArgContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.genericOptionArg().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitGenericOptionArgin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGenericOptionName
public T visitGenericOptionName(PostgreSQLStatementParser.GenericOptionNameContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.genericOptionName().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitGenericOptionNamein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitReplicaIdentity
public T visitReplicaIdentity(PostgreSQLStatementParser.ReplicaIdentityContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.replicaIdentity().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitReplicaIdentityin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOperArgtypes
public T visitOperArgtypes(PostgreSQLStatementParser.OperArgtypesContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.operArgtypes().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitOperArgtypesin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFuncArg
public T visitFuncArg(PostgreSQLStatementParser.FuncArgContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.funcArg().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitFuncArgin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitArgClass
public T visitArgClass(PostgreSQLStatementParser.ArgClassContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.argClass().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitArgClassin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFuncArgsList
public T visitFuncArgsList(PostgreSQLStatementParser.FuncArgsListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.funcArgsList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitFuncArgsListin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNonReservedWordOrSconst
public T visitNonReservedWordOrSconst(PostgreSQLStatementParser.NonReservedWordOrSconstContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.nonReservedWordOrSconst().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitNonReservedWordOrSconstin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFileName
public T visitFileName(PostgreSQLStatementParser.FileNameContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.fileName().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitFileNamein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRoleList
public T visitRoleList(PostgreSQLStatementParser.RoleListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.roleList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitRoleListin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSetResetClause
public T visitSetResetClause(PostgreSQLStatementParser.SetResetClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.setResetClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSetResetClausein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSetRest
public T visitSetRest(PostgreSQLStatementParser.SetRestContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.setRest().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSetRestin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTransactionModeList
public T visitTransactionModeList(PostgreSQLStatementParser.TransactionModeListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.transactionModeList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTransactionModeListin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTransactionModeItem
public T visitTransactionModeItem(PostgreSQLStatementParser.TransactionModeItemContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.transactionModeItem().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTransactionModeItemin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSetRestMore
public T visitSetRestMore(PostgreSQLStatementParser.SetRestMoreContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.setRestMore().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSetRestMorein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEncoding
public T visitEncoding(PostgreSQLStatementParser.EncodingContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.encoding().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitEncodingin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGenericSet
public T visitGenericSet(PostgreSQLStatementParser.GenericSetContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.genericSet().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitGenericSetin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitVariableResetStmt
public T visitVariableResetStmt(PostgreSQLStatementParser.VariableResetStmtContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.variableResetStmt().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitVariableResetStmtin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitResetRest
public T visitResetRest(PostgreSQLStatementParser.ResetRestContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.resetRest().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitResetRestin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGenericReset
public T visitGenericReset(PostgreSQLStatementParser.GenericResetContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.genericReset().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitGenericResetin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRelationExprList
public T visitRelationExprList(PostgreSQLStatementParser.RelationExprListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.relationExprList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitRelationExprListin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCommonFuncOptItem
public T visitCommonFuncOptItem(PostgreSQLStatementParser.CommonFuncOptItemContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.commonFuncOptItem().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCommonFuncOptItemin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFunctionSetResetClause
public T visitFunctionSetResetClause(PostgreSQLStatementParser.FunctionSetResetClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.functionSetResetClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitFunctionSetResetClausein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRowSecurityCmd
public T visitRowSecurityCmd(PostgreSQLStatementParser.RowSecurityCmdContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.rowSecurityCmd().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitRowSecurityCmdin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEvent
public T visitEvent(PostgreSQLStatementParser.EventContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.event().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitEventin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTypeNameList
public T visitTypeNameList(PostgreSQLStatementParser.TypeNameListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.typeNameList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTypeNameListin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIfNotExists
public T visitIfNotExists(PostgreSQLStatementParser.IfNotExistsContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.ifNotExists().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitIfNotExistsin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIfExists
public T visitIfExists(PostgreSQLStatementParser.IfExistsContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.ifExists().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitIfExistsin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBooleanValue
public T visitBooleanValue(PostgreSQLStatementParser.BooleanValueContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.booleanValue().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitBooleanValuein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGrant
public T visitGrant(PostgreSQLStatementParser.GrantContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.grant().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitGrantin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRevoke
public T visitRevoke(PostgreSQLStatementParser.RevokeContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.revoke().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitRevokein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOptionForClause
public T visitOptionForClause(PostgreSQLStatementParser.OptionForClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.optionForClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitOptionForClausein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateUser
public T visitCreateUser(PostgreSQLStatementParser.CreateUserContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createUser().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCreateUserin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateOptRoleElem
public T visitCreateOptRoleElem(PostgreSQLStatementParser.CreateOptRoleElemContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createOptRoleElem().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCreateOptRoleElemin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterOptRoleElem
public T visitAlterOptRoleElem(PostgreSQLStatementParser.AlterOptRoleElemContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterOptRoleElem().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterOptRoleElemin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropUser
public T visitDropUser(PostgreSQLStatementParser.DropUserContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropUser().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDropUserin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterUser
public T visitAlterUser(PostgreSQLStatementParser.AlterUserContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterUser().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterUserin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterUserClauses
public T visitAlterUserClauses(PostgreSQLStatementParser.AlterUserClausesContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterUserClauses().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterUserClausesin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterOptRoleList
public T visitAlterOptRoleList(PostgreSQLStatementParser.AlterOptRoleListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterOptRoleList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterOptRoleListin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateRole
public T visitCreateRole(PostgreSQLStatementParser.CreateRoleContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createRole().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCreateRolein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropRole
public T visitDropRole(PostgreSQLStatementParser.DropRoleContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropRole().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDropRolein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterRole
public T visitAlterRole(PostgreSQLStatementParser.AlterRoleContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterRole().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterRolein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateGroup
public T visitCreateGroup(PostgreSQLStatementParser.CreateGroupContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createGroup().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCreateGroupin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitReassignOwned
public T visitReassignOwned(PostgreSQLStatementParser.ReassignOwnedContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.reassignOwned().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitReassignOwnedin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropDroup
public T visitDropDroup(PostgreSQLStatementParser.DropDroupContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropDroup().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDropDroupin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateTable
public T visitCreateTable(PostgreSQLStatementParser.CreateTableContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createTable().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCreateTablein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExecuteParamClause
public T visitExecuteParamClause(PostgreSQLStatementParser.ExecuteParamClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.executeParamClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitExecuteParamClausein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPartitionBoundSpec
public T visitPartitionBoundSpec(PostgreSQLStatementParser.PartitionBoundSpecContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.partitionBoundSpec().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitPartitionBoundSpecin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitHashPartbound
public T visitHashPartbound(PostgreSQLStatementParser.HashPartboundContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.hashPartbound().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitHashPartboundin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitHashPartboundElem
public T visitHashPartboundElem(PostgreSQLStatementParser.HashPartboundElemContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.hashPartboundElem().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitHashPartboundElemin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTypedTableElementList
public T visitTypedTableElementList(PostgreSQLStatementParser.TypedTableElementListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.typedTableElementList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTypedTableElementListin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTypedTableElement
public T visitTypedTableElement(PostgreSQLStatementParser.TypedTableElementContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.typedTableElement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTypedTableElementin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitColumnOptions
public T visitColumnOptions(PostgreSQLStatementParser.ColumnOptionsContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.columnOptions().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitColumnOptionsin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWithData
public T visitWithData(PostgreSQLStatementParser.WithDataContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.withData().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitWithDatain interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableSpace
public T visitTableSpace(PostgreSQLStatementParser.TableSpaceContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.tableSpace().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTableSpacein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOnCommitOption
public T visitOnCommitOption(PostgreSQLStatementParser.OnCommitOptionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.onCommitOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitOnCommitOptionin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWithOption
public T visitWithOption(PostgreSQLStatementParser.WithOptionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.withOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitWithOptionin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableAccessMethodClause
public T visitTableAccessMethodClause(PostgreSQLStatementParser.TableAccessMethodClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.tableAccessMethodClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTableAccessMethodClausein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAccessMethod
public T visitAccessMethod(PostgreSQLStatementParser.AccessMethodContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.accessMethod().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAccessMethodin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateIndex
public T visitCreateIndex(PostgreSQLStatementParser.CreateIndexContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createIndex().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCreateIndexin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInclude
public T visitInclude(PostgreSQLStatementParser.IncludeContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.include().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitIncludein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIndexIncludingParams
public T visitIndexIncludingParams(PostgreSQLStatementParser.IndexIncludingParamsContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.indexIncludingParams().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitIndexIncludingParamsin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAccessMethodClause
public T visitAccessMethodClause(PostgreSQLStatementParser.AccessMethodClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.accessMethodClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAccessMethodClausein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateDatabase
public T visitCreateDatabase(PostgreSQLStatementParser.CreateDatabaseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createDatabase().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCreateDatabasein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateView
public T visitCreateView(PostgreSQLStatementParser.CreateViewContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createView().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCreateViewin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropDatabase
public T visitDropDatabase(PostgreSQLStatementParser.DropDatabaseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropDatabase().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDropDatabasein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropGroup
public T visitDropGroup(PostgreSQLStatementParser.DropGroupContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropGroup().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDropGroupin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateDatabaseSpecification
public T visitCreateDatabaseSpecification(PostgreSQLStatementParser.CreateDatabaseSpecificationContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createDatabaseSpecification().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCreateDatabaseSpecificationin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreatedbOptName
public T visitCreatedbOptName(PostgreSQLStatementParser.CreatedbOptNameContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createdbOptName().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCreatedbOptNamein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterTable
public T visitAlterTable(PostgreSQLStatementParser.AlterTableContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterTable().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterTablein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterIndex
public T visitAlterIndex(PostgreSQLStatementParser.AlterIndexContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterIndex().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterIndexin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropTable
public T visitDropTable(PostgreSQLStatementParser.DropTableContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropTable().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDropTablein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropTableOpt
public T visitDropTableOpt(PostgreSQLStatementParser.DropTableOptContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropTableOpt().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDropTableOptin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropIndex
public T visitDropIndex(PostgreSQLStatementParser.DropIndexContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropIndex().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDropIndexin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropIndexOpt
public T visitDropIndexOpt(PostgreSQLStatementParser.DropIndexOptContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropIndexOpt().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDropIndexOptin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTruncateTable
public T visitTruncateTable(PostgreSQLStatementParser.TruncateTableContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.truncateTable().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTruncateTablein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRestartSeqs
public T visitRestartSeqs(PostgreSQLStatementParser.RestartSeqsContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.restartSeqs().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitRestartSeqsin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateTableSpecification
public T visitCreateTableSpecification(PostgreSQLStatementParser.CreateTableSpecificationContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createTableSpecification().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCreateTableSpecificationin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateDefinitionClause
public T visitCreateDefinitionClause(PostgreSQLStatementParser.CreateDefinitionClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createDefinitionClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCreateDefinitionClausein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateDefinition
public T visitCreateDefinition(PostgreSQLStatementParser.CreateDefinitionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createDefinition().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCreateDefinitionin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitColumnDefinition
public T visitColumnDefinition(PostgreSQLStatementParser.ColumnDefinitionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.columnDefinition().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitColumnDefinitionin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitColumnConstraint
public T visitColumnConstraint(PostgreSQLStatementParser.ColumnConstraintContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.columnConstraint().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitColumnConstraintin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitConstraintClause
public T visitConstraintClause(PostgreSQLStatementParser.ConstraintClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.constraintClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitConstraintClausein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitColumnConstraintOption
public T visitColumnConstraintOption(PostgreSQLStatementParser.ColumnConstraintOptionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.columnConstraintOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitColumnConstraintOptionin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCheckOption
public T visitCheckOption(PostgreSQLStatementParser.CheckOptionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.checkOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCheckOptionin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDefaultExpr
public T visitDefaultExpr(PostgreSQLStatementParser.DefaultExprContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.defaultExpr().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDefaultExprin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSequenceOptions
public T visitSequenceOptions(PostgreSQLStatementParser.SequenceOptionsContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.sequenceOptions().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSequenceOptionsin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSequenceOption
public T visitSequenceOption(PostgreSQLStatementParser.SequenceOptionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.sequenceOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSequenceOptionin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIndexParameters
public T visitIndexParameters(PostgreSQLStatementParser.IndexParametersContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.indexParameters().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitIndexParametersin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAction
public T visitAction(PostgreSQLStatementParser.ActionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.action().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitActionin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitConstraintOptionalParam
public T visitConstraintOptionalParam(PostgreSQLStatementParser.ConstraintOptionalParamContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.constraintOptionalParam().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitConstraintOptionalParamin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLikeOption
public T visitLikeOption(PostgreSQLStatementParser.LikeOptionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.likeOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitLikeOptionin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableConstraint
public T visitTableConstraint(PostgreSQLStatementParser.TableConstraintContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.tableConstraint().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTableConstraintin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableConstraintOption
public T visitTableConstraintOption(PostgreSQLStatementParser.TableConstraintOptionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.tableConstraintOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTableConstraintOptionin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExclusionWhereClause
public T visitExclusionWhereClause(PostgreSQLStatementParser.ExclusionWhereClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.exclusionWhereClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitExclusionWhereClausein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExclusionConstraintList
public T visitExclusionConstraintList(PostgreSQLStatementParser.ExclusionConstraintListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.exclusionConstraintList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitExclusionConstraintListin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExclusionConstraintElem
public T visitExclusionConstraintElem(PostgreSQLStatementParser.ExclusionConstraintElemContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.exclusionConstraintElem().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitExclusionConstraintElemin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInheritClause
public T visitInheritClause(PostgreSQLStatementParser.InheritClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.inheritClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitInheritClausein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPartitionSpec
public T visitPartitionSpec(PostgreSQLStatementParser.PartitionSpecContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.partitionSpec().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitPartitionSpecin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPartParams
public T visitPartParams(PostgreSQLStatementParser.PartParamsContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.partParams().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitPartParamsin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPartElem
public T visitPartElem(PostgreSQLStatementParser.PartElemContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.partElem().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitPartElemin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFuncExprWindowless
public T visitFuncExprWindowless(PostgreSQLStatementParser.FuncExprWindowlessContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.funcExprWindowless().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitFuncExprWindowlessin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPartStrategy
public T visitPartStrategy(PostgreSQLStatementParser.PartStrategyContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.partStrategy().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitPartStrategyin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateIndexSpecification
public T visitCreateIndexSpecification(PostgreSQLStatementParser.CreateIndexSpecificationContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createIndexSpecification().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCreateIndexSpecificationin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitConcurrentlyClause
public T visitConcurrentlyClause(PostgreSQLStatementParser.ConcurrentlyClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.concurrentlyClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitConcurrentlyClausein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOnlyClause
public T visitOnlyClause(PostgreSQLStatementParser.OnlyClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.onlyClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitOnlyClausein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAsteriskClause
public T visitAsteriskClause(PostgreSQLStatementParser.AsteriskClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.asteriskClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAsteriskClausein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterDefinitionClause
public T visitAlterDefinitionClause(PostgreSQLStatementParser.AlterDefinitionClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterDefinitionClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterDefinitionClausein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPartitionCmd
public T visitPartitionCmd(PostgreSQLStatementParser.PartitionCmdContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.partitionCmd().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitPartitionCmdin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterIndexDefinitionClause
public T visitAlterIndexDefinitionClause(PostgreSQLStatementParser.AlterIndexDefinitionClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterIndexDefinitionClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterIndexDefinitionClausein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIndexPartitionCmd
public T visitIndexPartitionCmd(PostgreSQLStatementParser.IndexPartitionCmdContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.indexPartitionCmd().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitIndexPartitionCmdin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRenameIndexSpecification
public T visitRenameIndexSpecification(PostgreSQLStatementParser.RenameIndexSpecificationContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.renameIndexSpecification().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitRenameIndexSpecificationin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterIndexDependsOnExtension
public T visitAlterIndexDependsOnExtension(PostgreSQLStatementParser.AlterIndexDependsOnExtensionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterIndexDependsOnExtension().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterIndexDependsOnExtensionin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterIndexSetTableSpace
public T visitAlterIndexSetTableSpace(PostgreSQLStatementParser.AlterIndexSetTableSpaceContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterIndexSetTableSpace().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterIndexSetTableSpacein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableNamesClause
public T visitTableNamesClause(PostgreSQLStatementParser.TableNamesClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.tableNamesClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTableNamesClausein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableNameClause
public T visitTableNameClause(PostgreSQLStatementParser.TableNameClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.tableNameClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTableNameClausein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterTableActions
public T visitAlterTableActions(PostgreSQLStatementParser.AlterTableActionsContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterTableActions().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterTableActionsin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterTableAction
public T visitAlterTableAction(PostgreSQLStatementParser.AlterTableActionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterTableAction().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterTableActionin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAddColumnSpecification
public T visitAddColumnSpecification(PostgreSQLStatementParser.AddColumnSpecificationContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.addColumnSpecification().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAddColumnSpecificationin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropColumnSpecification
public T visitDropColumnSpecification(PostgreSQLStatementParser.DropColumnSpecificationContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropColumnSpecification().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDropColumnSpecificationin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitModifyColumnSpecification
public T visitModifyColumnSpecification(PostgreSQLStatementParser.ModifyColumnSpecificationContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.modifyColumnSpecification().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitModifyColumnSpecificationin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitModifyColumn
public T visitModifyColumn(PostgreSQLStatementParser.ModifyColumnContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.modifyColumn().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitModifyColumnin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterColumnSetOption
public T visitAlterColumnSetOption(PostgreSQLStatementParser.AlterColumnSetOptionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterColumnSetOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterColumnSetOptionin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAttributeOptions
public T visitAttributeOptions(PostgreSQLStatementParser.AttributeOptionsContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.attributeOptions().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAttributeOptionsin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAttributeOption
public T visitAttributeOption(PostgreSQLStatementParser.AttributeOptionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.attributeOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAttributeOptionin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAddConstraintSpecification
public T visitAddConstraintSpecification(PostgreSQLStatementParser.AddConstraintSpecificationContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.addConstraintSpecification().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAddConstraintSpecificationin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableConstraintUsingIndex
public T visitTableConstraintUsingIndex(PostgreSQLStatementParser.TableConstraintUsingIndexContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.tableConstraintUsingIndex().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTableConstraintUsingIndexin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitModifyConstraintSpecification
public T visitModifyConstraintSpecification(PostgreSQLStatementParser.ModifyConstraintSpecificationContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.modifyConstraintSpecification().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitModifyConstraintSpecificationin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitValidateConstraintSpecification
public T visitValidateConstraintSpecification(PostgreSQLStatementParser.ValidateConstraintSpecificationContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.validateConstraintSpecification().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitValidateConstraintSpecificationin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropConstraintSpecification
public T visitDropConstraintSpecification(PostgreSQLStatementParser.DropConstraintSpecificationContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropConstraintSpecification().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDropConstraintSpecificationin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitStorageParameterWithValue
public T visitStorageParameterWithValue(PostgreSQLStatementParser.StorageParameterWithValueContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.storageParameterWithValue().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitStorageParameterWithValuein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitStorageParameter
public T visitStorageParameter(PostgreSQLStatementParser.StorageParameterContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.storageParameter().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitStorageParameterin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRenameColumnSpecification
public T visitRenameColumnSpecification(PostgreSQLStatementParser.RenameColumnSpecificationContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.renameColumnSpecification().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitRenameColumnSpecificationin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRenameConstraint
public T visitRenameConstraint(PostgreSQLStatementParser.RenameConstraintContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.renameConstraint().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitRenameConstraintin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRenameTableSpecification
public T visitRenameTableSpecification(PostgreSQLStatementParser.RenameTableSpecificationContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.renameTableSpecification().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitRenameTableSpecificationin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIndexNames
public T visitIndexNames(PostgreSQLStatementParser.IndexNamesContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.indexNames().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitIndexNamesin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterDatabase
public T visitAlterDatabase(PostgreSQLStatementParser.AlterDatabaseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterDatabase().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterDatabasein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterDatabaseClause
public T visitAlterDatabaseClause(PostgreSQLStatementParser.AlterDatabaseClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterDatabaseClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterDatabaseClausein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreatedbOptItems
public T visitCreatedbOptItems(PostgreSQLStatementParser.CreatedbOptItemsContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createdbOptItems().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCreatedbOptItemsin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreatedbOptItem
public T visitCreatedbOptItem(PostgreSQLStatementParser.CreatedbOptItemContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createdbOptItem().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCreatedbOptItemin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterTableCmds
public T visitAlterTableCmds(PostgreSQLStatementParser.AlterTableCmdsContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterTableCmds().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterTableCmdsin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterTableCmd
public T visitAlterTableCmd(PostgreSQLStatementParser.AlterTableCmdContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterTableCmd().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterTableCmdin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitColumnCompression
public T visitColumnCompression(PostgreSQLStatementParser.ColumnCompressionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.columnCompression().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitColumnCompressionin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitConstraintAttributeSpec
public T visitConstraintAttributeSpec(PostgreSQLStatementParser.ConstraintAttributeSpecContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.constraintAttributeSpec().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitConstraintAttributeSpecin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitConstraintAttributeElem
public T visitConstraintAttributeElem(PostgreSQLStatementParser.ConstraintAttributeElemContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.constraintAttributeElem().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitConstraintAttributeElemin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterGenericOptions
public T visitAlterGenericOptions(PostgreSQLStatementParser.AlterGenericOptionsContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterGenericOptions().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterGenericOptionsin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterGenericOptionList
public T visitAlterGenericOptionList(PostgreSQLStatementParser.AlterGenericOptionListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterGenericOptionList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterGenericOptionListin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterGenericOptionElem
public T visitAlterGenericOptionElem(PostgreSQLStatementParser.AlterGenericOptionElemContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterGenericOptionElem().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterGenericOptionElemin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropBehavior
public T visitDropBehavior(PostgreSQLStatementParser.DropBehaviorContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropBehavior().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDropBehaviorin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterUsing
public T visitAlterUsing(PostgreSQLStatementParser.AlterUsingContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterUsing().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterUsingin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSetData
public T visitSetData(PostgreSQLStatementParser.SetDataContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.setData().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSetDatain interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterIdentityColumnOptionList
public T visitAlterIdentityColumnOptionList(PostgreSQLStatementParser.AlterIdentityColumnOptionListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterIdentityColumnOptionList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterIdentityColumnOptionListin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterIdentityColumnOption
public T visitAlterIdentityColumnOption(PostgreSQLStatementParser.AlterIdentityColumnOptionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterIdentityColumnOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterIdentityColumnOptionin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterColumnDefault
public T visitAlterColumnDefault(PostgreSQLStatementParser.AlterColumnDefaultContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterColumnDefault().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterColumnDefaultin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterOperator
public T visitAlterOperator(PostgreSQLStatementParser.AlterOperatorContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterOperator().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterOperatorin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterOperatorClass
public T visitAlterOperatorClass(PostgreSQLStatementParser.AlterOperatorClassContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterOperatorClass().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterOperatorClassin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterOperatorClassClauses
public T visitAlterOperatorClassClauses(PostgreSQLStatementParser.AlterOperatorClassClausesContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterOperatorClassClauses().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterOperatorClassClausesin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterOperatorFamily
public T visitAlterOperatorFamily(PostgreSQLStatementParser.AlterOperatorFamilyContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterOperatorFamily().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterOperatorFamilyin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterOperatorFamilyClauses
public T visitAlterOperatorFamilyClauses(PostgreSQLStatementParser.AlterOperatorFamilyClausesContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterOperatorFamilyClauses().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterOperatorFamilyClausesin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOpclassItemList
public T visitOpclassItemList(PostgreSQLStatementParser.OpclassItemListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.opclassItemList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitOpclassItemListin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOpclassItem
public T visitOpclassItem(PostgreSQLStatementParser.OpclassItemContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.opclassItem().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitOpclassItemin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOpclassPurpose
public T visitOpclassPurpose(PostgreSQLStatementParser.OpclassPurposeContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.opclassPurpose().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitOpclassPurposein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterOperatorClauses
public T visitAlterOperatorClauses(PostgreSQLStatementParser.AlterOperatorClausesContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterOperatorClauses().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterOperatorClausesin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOperatorDefList
public T visitOperatorDefList(PostgreSQLStatementParser.OperatorDefListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.operatorDefList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitOperatorDefListin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOperatorDefElem
public T visitOperatorDefElem(PostgreSQLStatementParser.OperatorDefElemContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.operatorDefElem().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitOperatorDefElemin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOperatorDefArg
public T visitOperatorDefArg(PostgreSQLStatementParser.OperatorDefArgContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.operatorDefArg().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitOperatorDefArgin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOperatorWithArgtypes
public T visitOperatorWithArgtypes(PostgreSQLStatementParser.OperatorWithArgtypesContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.operatorWithArgtypes().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitOperatorWithArgtypesin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterAggregate
public T visitAlterAggregate(PostgreSQLStatementParser.AlterAggregateContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterAggregate().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterAggregatein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAggregateSignature
public T visitAggregateSignature(PostgreSQLStatementParser.AggregateSignatureContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.aggregateSignature().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAggregateSignaturein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAggrArgs
public T visitAggrArgs(PostgreSQLStatementParser.AggrArgsContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.aggrArgs().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAggrArgsin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAggrArgsList
public T visitAggrArgsList(PostgreSQLStatementParser.AggrArgsListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.aggrArgsList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAggrArgsListin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAggrArg
public T visitAggrArg(PostgreSQLStatementParser.AggrArgContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.aggrArg().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAggrArgin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterAggregateDefinitionClause
public T visitAlterAggregateDefinitionClause(PostgreSQLStatementParser.AlterAggregateDefinitionClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterAggregateDefinitionClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterAggregateDefinitionClausein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterCollation
public T visitAlterCollation(PostgreSQLStatementParser.AlterCollationContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterCollation().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterCollationin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterCollationClause
public T visitAlterCollationClause(PostgreSQLStatementParser.AlterCollationClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterCollationClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterCollationClausein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterConversion
public T visitAlterConversion(PostgreSQLStatementParser.AlterConversionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterConversion().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterConversionin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterConversionClause
public T visitAlterConversionClause(PostgreSQLStatementParser.AlterConversionClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterConversionClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterConversionClausein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterDefaultPrivileges
public T visitAlterDefaultPrivileges(PostgreSQLStatementParser.AlterDefaultPrivilegesContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterDefaultPrivileges().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterDefaultPrivilegesin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDefACLAction
public T visitDefACLAction(PostgreSQLStatementParser.DefACLActionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.defACLAction().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDefACLActionin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGrantGrantOption
public T visitGrantGrantOption(PostgreSQLStatementParser.GrantGrantOptionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.grantGrantOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitGrantGrantOptionin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGranteeList
public T visitGranteeList(PostgreSQLStatementParser.GranteeListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.granteeList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitGranteeListin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGrantee
public T visitGrantee(PostgreSQLStatementParser.GranteeContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.grantee().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitGranteein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDefaclPrivilegeTarget
public T visitDefaclPrivilegeTarget(PostgreSQLStatementParser.DefaclPrivilegeTargetContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.defaclPrivilegeTarget().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDefaclPrivilegeTargetin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPrivileges
public T visitPrivileges(PostgreSQLStatementParser.PrivilegesContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.privileges().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitPrivilegesin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPrivilegeList
public T visitPrivilegeList(PostgreSQLStatementParser.PrivilegeListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.privilegeList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitPrivilegeListin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPrivilege
public T visitPrivilege(PostgreSQLStatementParser.PrivilegeContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.privilege().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitPrivilegein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDefACLOptionList
public T visitDefACLOptionList(PostgreSQLStatementParser.DefACLOptionListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.defACLOptionList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDefACLOptionListin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDefACLOption
public T visitDefACLOption(PostgreSQLStatementParser.DefACLOptionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.defACLOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDefACLOptionin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSchemaNameList
public T visitSchemaNameList(PostgreSQLStatementParser.SchemaNameListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.schemaNameList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSchemaNameListin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterDomain
public T visitAlterDomain(PostgreSQLStatementParser.AlterDomainContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterDomain().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterDomainin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterDomainClause
public T visitAlterDomainClause(PostgreSQLStatementParser.AlterDomainClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterDomainClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterDomainClausein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterEventTrigger
public T visitAlterEventTrigger(PostgreSQLStatementParser.AlterEventTriggerContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterEventTrigger().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterEventTriggerin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterEventTriggerClause
public T visitAlterEventTriggerClause(PostgreSQLStatementParser.AlterEventTriggerClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterEventTriggerClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterEventTriggerClausein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTiggerName
public T visitTiggerName(PostgreSQLStatementParser.TiggerNameContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.tiggerName().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTiggerNamein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterExtension
public T visitAlterExtension(PostgreSQLStatementParser.AlterExtensionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterExtension().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterExtensionin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterExtensionClauses
public T visitAlterExtensionClauses(PostgreSQLStatementParser.AlterExtensionClausesContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterExtensionClauses().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterExtensionClausesin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFunctionWithArgtypes
public T visitFunctionWithArgtypes(PostgreSQLStatementParser.FunctionWithArgtypesContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.functionWithArgtypes().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitFunctionWithArgtypesin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFuncArgs
public T visitFuncArgs(PostgreSQLStatementParser.FuncArgsContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.funcArgs().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitFuncArgsin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAggregateWithArgtypes
public T visitAggregateWithArgtypes(PostgreSQLStatementParser.AggregateWithArgtypesContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.aggregateWithArgtypes().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAggregateWithArgtypesin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterExtensionOptList
public T visitAlterExtensionOptList(PostgreSQLStatementParser.AlterExtensionOptListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterExtensionOptList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterExtensionOptListin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterExtensionOptItem
public T visitAlterExtensionOptItem(PostgreSQLStatementParser.AlterExtensionOptItemContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterExtensionOptItem().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterExtensionOptItemin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterForeignDataWrapper
public T visitAlterForeignDataWrapper(PostgreSQLStatementParser.AlterForeignDataWrapperContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterForeignDataWrapper().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterForeignDataWrapperin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterForeignDataWrapperClauses
public T visitAlterForeignDataWrapperClauses(PostgreSQLStatementParser.AlterForeignDataWrapperClausesContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterForeignDataWrapperClauses().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterForeignDataWrapperClausesin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFdwOptions
public T visitFdwOptions(PostgreSQLStatementParser.FdwOptionsContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.fdwOptions().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitFdwOptionsin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFdwOption
public T visitFdwOption(PostgreSQLStatementParser.FdwOptionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.fdwOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitFdwOptionin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitHandlerName
public T visitHandlerName(PostgreSQLStatementParser.HandlerNameContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.handlerName().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitHandlerNamein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterGroup
public T visitAlterGroup(PostgreSQLStatementParser.AlterGroupContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterGroup().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterGroupin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterGroupClauses
public T visitAlterGroupClauses(PostgreSQLStatementParser.AlterGroupClausesContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterGroupClauses().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterGroupClausesin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterLanguage
public T visitAlterLanguage(PostgreSQLStatementParser.AlterLanguageContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterLanguage().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterLanguagein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterLargeObject
public T visitAlterLargeObject(PostgreSQLStatementParser.AlterLargeObjectContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterLargeObject().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterLargeObjectin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterMaterializedView
public T visitAlterMaterializedView(PostgreSQLStatementParser.AlterMaterializedViewContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterMaterializedView().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterMaterializedViewin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterMaterializedViewClauses
public T visitAlterMaterializedViewClauses(PostgreSQLStatementParser.AlterMaterializedViewClausesContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterMaterializedViewClauses().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterMaterializedViewClausesin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExecuteStmt
public T visitExecuteStmt(PostgreSQLStatementParser.ExecuteStmtContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.executeStmt().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitExecuteStmtin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateMaterializedView
public T visitCreateMaterializedView(PostgreSQLStatementParser.CreateMaterializedViewContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createMaterializedView().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCreateMaterializedViewin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateMvTarget
public T visitCreateMvTarget(PostgreSQLStatementParser.CreateMvTargetContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createMvTarget().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCreateMvTargetin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterPolicy
public T visitAlterPolicy(PostgreSQLStatementParser.AlterPolicyContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterPolicy().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterPolicyin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterPolicyClauses
public T visitAlterPolicyClauses(PostgreSQLStatementParser.AlterPolicyClausesContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterPolicyClauses().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterPolicyClausesin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRefreshMatViewStmt
public T visitRefreshMatViewStmt(PostgreSQLStatementParser.RefreshMatViewStmtContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.refreshMatViewStmt().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitRefreshMatViewStmtin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterProcedure
public T visitAlterProcedure(PostgreSQLStatementParser.AlterProcedureContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterProcedure().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterProcedurein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterProcedureClauses
public T visitAlterProcedureClauses(PostgreSQLStatementParser.AlterProcedureClausesContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterProcedureClauses().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterProcedureClausesin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterfuncOptList
public T visitAlterfuncOptList(PostgreSQLStatementParser.AlterfuncOptListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterfuncOptList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterfuncOptListin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterFunction
public T visitAlterFunction(PostgreSQLStatementParser.AlterFunctionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterFunction().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterFunctionin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterFunctionClauses
public T visitAlterFunctionClauses(PostgreSQLStatementParser.AlterFunctionClausesContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterFunctionClauses().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterFunctionClausesin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterPublication
public T visitAlterPublication(PostgreSQLStatementParser.AlterPublicationContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterPublication().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterPublicationin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterRoutine
public T visitAlterRoutine(PostgreSQLStatementParser.AlterRoutineContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterRoutine().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterRoutinein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterRule
public T visitAlterRule(PostgreSQLStatementParser.AlterRuleContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterRule().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterRulein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterSequence
public T visitAlterSequence(PostgreSQLStatementParser.AlterSequenceContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterSequence().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterSequencein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterSequenceClauses
public T visitAlterSequenceClauses(PostgreSQLStatementParser.AlterSequenceClausesContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterSequenceClauses().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterSequenceClausesin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterServer
public T visitAlterServer(PostgreSQLStatementParser.AlterServerContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterServer().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterServerin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitForeignServerVersion
public T visitForeignServerVersion(PostgreSQLStatementParser.ForeignServerVersionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.foreignServerVersion().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitForeignServerVersionin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterStatistics
public T visitAlterStatistics(PostgreSQLStatementParser.AlterStatisticsContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterStatistics().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterStatisticsin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterSubscription
public T visitAlterSubscription(PostgreSQLStatementParser.AlterSubscriptionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterSubscription().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterSubscriptionin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPublicationNameList
public T visitPublicationNameList(PostgreSQLStatementParser.PublicationNameListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.publicationNameList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitPublicationNameListin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPublicationNameItem
public T visitPublicationNameItem(PostgreSQLStatementParser.PublicationNameItemContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.publicationNameItem().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitPublicationNameItemin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterSystem
public T visitAlterSystem(PostgreSQLStatementParser.AlterSystemContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterSystem().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterSystemin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterTablespace
public T visitAlterTablespace(PostgreSQLStatementParser.AlterTablespaceContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterTablespace().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterTablespacein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterTextSearchConfiguration
public T visitAlterTextSearchConfiguration(PostgreSQLStatementParser.AlterTextSearchConfigurationContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterTextSearchConfiguration().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterTextSearchConfigurationin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterTextSearchConfigurationClauses
public T visitAlterTextSearchConfigurationClauses(PostgreSQLStatementParser.AlterTextSearchConfigurationClausesContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterTextSearchConfigurationClauses().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterTextSearchConfigurationClausesin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAnyNameList
public T visitAnyNameList(PostgreSQLStatementParser.AnyNameListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.anyNameList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAnyNameListin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterTextSearchDictionary
public T visitAlterTextSearchDictionary(PostgreSQLStatementParser.AlterTextSearchDictionaryContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterTextSearchDictionary().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterTextSearchDictionaryin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterTextSearchParser
public T visitAlterTextSearchParser(PostgreSQLStatementParser.AlterTextSearchParserContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterTextSearchParser().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterTextSearchParserin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterTextSearchTemplate
public T visitAlterTextSearchTemplate(PostgreSQLStatementParser.AlterTextSearchTemplateContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterTextSearchTemplate().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterTextSearchTemplatein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterTrigger
public T visitAlterTrigger(PostgreSQLStatementParser.AlterTriggerContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterTrigger().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterTriggerin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterType
public T visitAlterType(PostgreSQLStatementParser.AlterTypeContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterType().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterTypein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterTypeClauses
public T visitAlterTypeClauses(PostgreSQLStatementParser.AlterTypeClausesContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterTypeClauses().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterTypeClausesin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterTypeCmds
public T visitAlterTypeCmds(PostgreSQLStatementParser.AlterTypeCmdsContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterTypeCmds().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterTypeCmdsin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterTypeCmd
public T visitAlterTypeCmd(PostgreSQLStatementParser.AlterTypeCmdContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterTypeCmd().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterTypeCmdin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterUserMapping
public T visitAlterUserMapping(PostgreSQLStatementParser.AlterUserMappingContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterUserMapping().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterUserMappingin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAuthIdent
public T visitAuthIdent(PostgreSQLStatementParser.AuthIdentContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.authIdent().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAuthIdentin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterView
public T visitAlterView(PostgreSQLStatementParser.AlterViewContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterView().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterViewin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterViewCmds
public T visitAlterViewCmds(PostgreSQLStatementParser.AlterViewCmdsContext ctx)
Visit a parse tree produced by thealterViewCmdslabeled alternative inPostgreSQLStatementParser.alterViewClauses().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterViewCmdsin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterRenameView
public T visitAlterRenameView(PostgreSQLStatementParser.AlterRenameViewContext ctx)
Visit a parse tree produced by thealterRenameViewlabeled alternative inPostgreSQLStatementParser.alterViewClauses().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterRenameViewin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterRenameColumn
public T visitAlterRenameColumn(PostgreSQLStatementParser.AlterRenameColumnContext ctx)
Visit a parse tree produced by thealterRenameColumnlabeled alternative inPostgreSQLStatementParser.alterViewClauses().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterRenameColumnin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterSetSchema
public T visitAlterSetSchema(PostgreSQLStatementParser.AlterSetSchemaContext ctx)
Visit a parse tree produced by thealterSetSchemalabeled alternative inPostgreSQLStatementParser.alterViewClauses().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterSetSchemain interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitClose
public T visitClose(PostgreSQLStatementParser.CloseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.close().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitClosein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCluster
public T visitCluster(PostgreSQLStatementParser.ClusterContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.cluster().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitClusterin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitClusterVerboseSpecification
public T visitClusterVerboseSpecification(PostgreSQLStatementParser.ClusterVerboseSpecificationContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.clusterVerboseSpecification().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitClusterVerboseSpecificationin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitClusterIndexSpecification
public T visitClusterIndexSpecification(PostgreSQLStatementParser.ClusterIndexSpecificationContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.clusterIndexSpecification().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitClusterIndexSpecificationin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitClusterVerboseOptionList
public T visitClusterVerboseOptionList(PostgreSQLStatementParser.ClusterVerboseOptionListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.clusterVerboseOptionList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitClusterVerboseOptionListin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitClusterVerboseOption
public T visitClusterVerboseOption(PostgreSQLStatementParser.ClusterVerboseOptionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.clusterVerboseOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitClusterVerboseOptionin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitComment
public T visitComment(PostgreSQLStatementParser.CommentContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.comment().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCommentin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCommentClauses
public T visitCommentClauses(PostgreSQLStatementParser.CommentClausesContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.commentClauses().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCommentClausesin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitObjectTypeNameOnAnyName
public T visitObjectTypeNameOnAnyName(PostgreSQLStatementParser.ObjectTypeNameOnAnyNameContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.objectTypeNameOnAnyName().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitObjectTypeNameOnAnyNamein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitObjectTypeName
public T visitObjectTypeName(PostgreSQLStatementParser.ObjectTypeNameContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.objectTypeName().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitObjectTypeNamein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropTypeName
public T visitDropTypeName(PostgreSQLStatementParser.DropTypeNameContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropTypeName().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDropTypeNamein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitObjectTypeAnyName
public T visitObjectTypeAnyName(PostgreSQLStatementParser.ObjectTypeAnyNameContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.objectTypeAnyName().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitObjectTypeAnyNamein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCommentText
public T visitCommentText(PostgreSQLStatementParser.CommentTextContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.commentText().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCommentTextin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateAccessMethod
public T visitCreateAccessMethod(PostgreSQLStatementParser.CreateAccessMethodContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createAccessMethod().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCreateAccessMethodin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateAggregate
public T visitCreateAggregate(PostgreSQLStatementParser.CreateAggregateContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createAggregate().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCreateAggregatein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOldAggrDefinition
public T visitOldAggrDefinition(PostgreSQLStatementParser.OldAggrDefinitionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.oldAggrDefinition().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitOldAggrDefinitionin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOldAggrList
public T visitOldAggrList(PostgreSQLStatementParser.OldAggrListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.oldAggrList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitOldAggrListin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOldAggrElem
public T visitOldAggrElem(PostgreSQLStatementParser.OldAggrElemContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.oldAggrElem().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitOldAggrElemin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateCast
public T visitCreateCast(PostgreSQLStatementParser.CreateCastContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createCast().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCreateCastin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCastContext
public T visitCastContext(PostgreSQLStatementParser.CastContextContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.castContext().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCastContextin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateCollation
public T visitCreateCollation(PostgreSQLStatementParser.CreateCollationContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createCollation().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCreateCollationin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateConversion
public T visitCreateConversion(PostgreSQLStatementParser.CreateConversionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createConversion().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCreateConversionin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateDomain
public T visitCreateDomain(PostgreSQLStatementParser.CreateDomainContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createDomain().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCreateDomainin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateEventTrigger
public T visitCreateEventTrigger(PostgreSQLStatementParser.CreateEventTriggerContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createEventTrigger().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCreateEventTriggerin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEventTriggerWhenList
public T visitEventTriggerWhenList(PostgreSQLStatementParser.EventTriggerWhenListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.eventTriggerWhenList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitEventTriggerWhenListin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEventTriggerWhenItem
public T visitEventTriggerWhenItem(PostgreSQLStatementParser.EventTriggerWhenItemContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.eventTriggerWhenItem().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitEventTriggerWhenItemin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEventTriggerValueList
public T visitEventTriggerValueList(PostgreSQLStatementParser.EventTriggerValueListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.eventTriggerValueList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitEventTriggerValueListin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateExtension
public T visitCreateExtension(PostgreSQLStatementParser.CreateExtensionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createExtension().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCreateExtensionin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateExtensionOptList
public T visitCreateExtensionOptList(PostgreSQLStatementParser.CreateExtensionOptListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createExtensionOptList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCreateExtensionOptListin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateExtensionOptItem
public T visitCreateExtensionOptItem(PostgreSQLStatementParser.CreateExtensionOptItemContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createExtensionOptItem().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCreateExtensionOptItemin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateForeignDataWrapper
public T visitCreateForeignDataWrapper(PostgreSQLStatementParser.CreateForeignDataWrapperContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createForeignDataWrapper().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCreateForeignDataWrapperin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateForeignTable
public T visitCreateForeignTable(PostgreSQLStatementParser.CreateForeignTableContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createForeignTable().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCreateForeignTablein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateForeignTableClauses
public T visitCreateForeignTableClauses(PostgreSQLStatementParser.CreateForeignTableClausesContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createForeignTableClauses().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCreateForeignTableClausesin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableElementList
public T visitTableElementList(PostgreSQLStatementParser.TableElementListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.tableElementList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTableElementListin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableElement
public T visitTableElement(PostgreSQLStatementParser.TableElementContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.tableElement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTableElementin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableLikeClause
public T visitTableLikeClause(PostgreSQLStatementParser.TableLikeClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.tableLikeClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTableLikeClausein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableLikeOptionList
public T visitTableLikeOptionList(PostgreSQLStatementParser.TableLikeOptionListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.tableLikeOptionList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTableLikeOptionListin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableLikeOption
public T visitTableLikeOption(PostgreSQLStatementParser.TableLikeOptionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.tableLikeOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTableLikeOptionin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateFunction
public T visitCreateFunction(PostgreSQLStatementParser.CreateFunctionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createFunction().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCreateFunctionin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableFuncColumnList
public T visitTableFuncColumnList(PostgreSQLStatementParser.TableFuncColumnListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.tableFuncColumnList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTableFuncColumnListin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableFuncColumn
public T visitTableFuncColumn(PostgreSQLStatementParser.TableFuncColumnContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.tableFuncColumn().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTableFuncColumnin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreatefuncOptList
public T visitCreatefuncOptList(PostgreSQLStatementParser.CreatefuncOptListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createfuncOptList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCreatefuncOptListin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreatefuncOptItem
public T visitCreatefuncOptItem(PostgreSQLStatementParser.CreatefuncOptItemContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createfuncOptItem().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCreatefuncOptItemin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTransformTypeList
public T visitTransformTypeList(PostgreSQLStatementParser.TransformTypeListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.transformTypeList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTransformTypeListin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFuncAs
public T visitFuncAs(PostgreSQLStatementParser.FuncAsContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.funcAs().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitFuncAsin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFuncReturn
public T visitFuncReturn(PostgreSQLStatementParser.FuncReturnContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.funcReturn().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitFuncReturnin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFuncArgsWithDefaults
public T visitFuncArgsWithDefaults(PostgreSQLStatementParser.FuncArgsWithDefaultsContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.funcArgsWithDefaults().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitFuncArgsWithDefaultsin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFuncArgsWithDefaultsList
public T visitFuncArgsWithDefaultsList(PostgreSQLStatementParser.FuncArgsWithDefaultsListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.funcArgsWithDefaultsList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitFuncArgsWithDefaultsListin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFuncArgWithDefault
public T visitFuncArgWithDefault(PostgreSQLStatementParser.FuncArgWithDefaultContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.funcArgWithDefault().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitFuncArgWithDefaultin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateLanguage
public T visitCreateLanguage(PostgreSQLStatementParser.CreateLanguageContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createLanguage().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCreateLanguagein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTransformElementList
public T visitTransformElementList(PostgreSQLStatementParser.TransformElementListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.transformElementList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTransformElementListin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitValidatorClause
public T visitValidatorClause(PostgreSQLStatementParser.ValidatorClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.validatorClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitValidatorClausein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreatePolicy
public T visitCreatePolicy(PostgreSQLStatementParser.CreatePolicyContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createPolicy().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCreatePolicyin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateProcedure
public T visitCreateProcedure(PostgreSQLStatementParser.CreateProcedureContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createProcedure().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCreateProcedurein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreatePublication
public T visitCreatePublication(PostgreSQLStatementParser.CreatePublicationContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createPublication().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCreatePublicationin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPublicationForTables
public T visitPublicationForTables(PostgreSQLStatementParser.PublicationForTablesContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.publicationForTables().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitPublicationForTablesin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateRule
public T visitCreateRule(PostgreSQLStatementParser.CreateRuleContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createRule().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCreateRulein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRuleActionList
public T visitRuleActionList(PostgreSQLStatementParser.RuleActionListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.ruleActionList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitRuleActionListin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRuleActionStmt
public T visitRuleActionStmt(PostgreSQLStatementParser.RuleActionStmtContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.ruleActionStmt().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitRuleActionStmtin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRuleActionMulti
public T visitRuleActionMulti(PostgreSQLStatementParser.RuleActionMultiContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.ruleActionMulti().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitRuleActionMultiin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateTrigger
public T visitCreateTrigger(PostgreSQLStatementParser.CreateTriggerContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createTrigger().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCreateTriggerin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTriggerEvents
public T visitTriggerEvents(PostgreSQLStatementParser.TriggerEventsContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.triggerEvents().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTriggerEventsin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTriggerOneEvent
public T visitTriggerOneEvent(PostgreSQLStatementParser.TriggerOneEventContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.triggerOneEvent().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTriggerOneEventin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTriggerActionTime
public T visitTriggerActionTime(PostgreSQLStatementParser.TriggerActionTimeContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.triggerActionTime().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTriggerActionTimein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTriggerFuncArgs
public T visitTriggerFuncArgs(PostgreSQLStatementParser.TriggerFuncArgsContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.triggerFuncArgs().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTriggerFuncArgsin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTriggerFuncArg
public T visitTriggerFuncArg(PostgreSQLStatementParser.TriggerFuncArgContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.triggerFuncArg().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTriggerFuncArgin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTriggerWhen
public T visitTriggerWhen(PostgreSQLStatementParser.TriggerWhenContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.triggerWhen().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTriggerWhenin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTriggerForSpec
public T visitTriggerForSpec(PostgreSQLStatementParser.TriggerForSpecContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.triggerForSpec().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTriggerForSpecin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTriggerReferencing
public T visitTriggerReferencing(PostgreSQLStatementParser.TriggerReferencingContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.triggerReferencing().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTriggerReferencingin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTriggerTransitions
public T visitTriggerTransitions(PostgreSQLStatementParser.TriggerTransitionsContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.triggerTransitions().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTriggerTransitionsin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTriggerTransition
public T visitTriggerTransition(PostgreSQLStatementParser.TriggerTransitionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.triggerTransition().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTriggerTransitionin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTransitionRelName
public T visitTransitionRelName(PostgreSQLStatementParser.TransitionRelNameContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.transitionRelName().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTransitionRelNamein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTransitionRowOrTable
public T visitTransitionRowOrTable(PostgreSQLStatementParser.TransitionRowOrTableContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.transitionRowOrTable().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTransitionRowOrTablein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTransitionOldOrNew
public T visitTransitionOldOrNew(PostgreSQLStatementParser.TransitionOldOrNewContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.transitionOldOrNew().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTransitionOldOrNewin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateSequence
public T visitCreateSequence(PostgreSQLStatementParser.CreateSequenceContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createSequence().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCreateSequencein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTempOption
public T visitTempOption(PostgreSQLStatementParser.TempOptionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.tempOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTempOptionin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateServer
public T visitCreateServer(PostgreSQLStatementParser.CreateServerContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createServer().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCreateServerin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateStatistics
public T visitCreateStatistics(PostgreSQLStatementParser.CreateStatisticsContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createStatistics().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCreateStatisticsin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateSubscription
public T visitCreateSubscription(PostgreSQLStatementParser.CreateSubscriptionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createSubscription().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCreateSubscriptionin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateTablespace
public T visitCreateTablespace(PostgreSQLStatementParser.CreateTablespaceContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createTablespace().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCreateTablespacein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateTextSearch
public T visitCreateTextSearch(PostgreSQLStatementParser.CreateTextSearchContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createTextSearch().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCreateTextSearchin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateTransform
public T visitCreateTransform(PostgreSQLStatementParser.CreateTransformContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createTransform().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCreateTransformin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateType
public T visitCreateType(PostgreSQLStatementParser.CreateTypeContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createType().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCreateTypein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateTypeClauses
public T visitCreateTypeClauses(PostgreSQLStatementParser.CreateTypeClausesContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createTypeClauses().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCreateTypeClausesin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEnumValList
public T visitEnumValList(PostgreSQLStatementParser.EnumValListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.enumValList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitEnumValListin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateUserMapping
public T visitCreateUserMapping(PostgreSQLStatementParser.CreateUserMappingContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createUserMapping().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCreateUserMappingin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDiscard
public T visitDiscard(PostgreSQLStatementParser.DiscardContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.discard().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDiscardin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropAccessMethod
public T visitDropAccessMethod(PostgreSQLStatementParser.DropAccessMethodContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropAccessMethod().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDropAccessMethodin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropAggregate
public T visitDropAggregate(PostgreSQLStatementParser.DropAggregateContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropAggregate().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDropAggregatein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAggregateWithArgtypesList
public T visitAggregateWithArgtypesList(PostgreSQLStatementParser.AggregateWithArgtypesListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.aggregateWithArgtypesList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAggregateWithArgtypesListin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropCast
public T visitDropCast(PostgreSQLStatementParser.DropCastContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropCast().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDropCastin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropCollation
public T visitDropCollation(PostgreSQLStatementParser.DropCollationContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropCollation().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDropCollationin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropConversion
public T visitDropConversion(PostgreSQLStatementParser.DropConversionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropConversion().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDropConversionin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropDomain
public T visitDropDomain(PostgreSQLStatementParser.DropDomainContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropDomain().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDropDomainin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropEventTrigger
public T visitDropEventTrigger(PostgreSQLStatementParser.DropEventTriggerContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropEventTrigger().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDropEventTriggerin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropExtension
public T visitDropExtension(PostgreSQLStatementParser.DropExtensionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropExtension().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDropExtensionin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropForeignDataWrapper
public T visitDropForeignDataWrapper(PostgreSQLStatementParser.DropForeignDataWrapperContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropForeignDataWrapper().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDropForeignDataWrapperin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropForeignTable
public T visitDropForeignTable(PostgreSQLStatementParser.DropForeignTableContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropForeignTable().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDropForeignTablein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropFunction
public T visitDropFunction(PostgreSQLStatementParser.DropFunctionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropFunction().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDropFunctionin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFunctionWithArgtypesList
public T visitFunctionWithArgtypesList(PostgreSQLStatementParser.FunctionWithArgtypesListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.functionWithArgtypesList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitFunctionWithArgtypesListin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropLanguage
public T visitDropLanguage(PostgreSQLStatementParser.DropLanguageContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropLanguage().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDropLanguagein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropMaterializedView
public T visitDropMaterializedView(PostgreSQLStatementParser.DropMaterializedViewContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropMaterializedView().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDropMaterializedViewin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropOperator
public T visitDropOperator(PostgreSQLStatementParser.DropOperatorContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropOperator().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDropOperatorin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOperatorWithArgtypesList
public T visitOperatorWithArgtypesList(PostgreSQLStatementParser.OperatorWithArgtypesListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.operatorWithArgtypesList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitOperatorWithArgtypesListin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropOperatorClass
public T visitDropOperatorClass(PostgreSQLStatementParser.DropOperatorClassContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropOperatorClass().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDropOperatorClassin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropOperatorFamily
public T visitDropOperatorFamily(PostgreSQLStatementParser.DropOperatorFamilyContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropOperatorFamily().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDropOperatorFamilyin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropOwned
public T visitDropOwned(PostgreSQLStatementParser.DropOwnedContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropOwned().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDropOwnedin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropPolicy
public T visitDropPolicy(PostgreSQLStatementParser.DropPolicyContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropPolicy().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDropPolicyin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropProcedure
public T visitDropProcedure(PostgreSQLStatementParser.DropProcedureContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropProcedure().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDropProcedurein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropPublication
public T visitDropPublication(PostgreSQLStatementParser.DropPublicationContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropPublication().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDropPublicationin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropRoutine
public T visitDropRoutine(PostgreSQLStatementParser.DropRoutineContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropRoutine().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDropRoutinein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropRule
public T visitDropRule(PostgreSQLStatementParser.DropRuleContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropRule().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDropRulein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropSequence
public T visitDropSequence(PostgreSQLStatementParser.DropSequenceContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropSequence().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDropSequencein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropServer
public T visitDropServer(PostgreSQLStatementParser.DropServerContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropServer().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDropServerin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropStatistics
public T visitDropStatistics(PostgreSQLStatementParser.DropStatisticsContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropStatistics().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDropStatisticsin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropSubscription
public T visitDropSubscription(PostgreSQLStatementParser.DropSubscriptionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropSubscription().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDropSubscriptionin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropTablespace
public T visitDropTablespace(PostgreSQLStatementParser.DropTablespaceContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropTablespace().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDropTablespacein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropTextSearch
public T visitDropTextSearch(PostgreSQLStatementParser.DropTextSearchContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropTextSearch().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDropTextSearchin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropTransform
public T visitDropTransform(PostgreSQLStatementParser.DropTransformContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropTransform().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDropTransformin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropTrigger
public T visitDropTrigger(PostgreSQLStatementParser.DropTriggerContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropTrigger().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDropTriggerin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropType
public T visitDropType(PostgreSQLStatementParser.DropTypeContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropType().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDropTypein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropUserMapping
public T visitDropUserMapping(PostgreSQLStatementParser.DropUserMappingContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropUserMapping().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDropUserMappingin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropView
public T visitDropView(PostgreSQLStatementParser.DropViewContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropView().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDropViewin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitImportForeignSchema
public T visitImportForeignSchema(PostgreSQLStatementParser.ImportForeignSchemaContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.importForeignSchema().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitImportForeignSchemain interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitImportQualification
public T visitImportQualification(PostgreSQLStatementParser.ImportQualificationContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.importQualification().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitImportQualificationin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitImportQualificationType
public T visitImportQualificationType(PostgreSQLStatementParser.ImportQualificationTypeContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.importQualificationType().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitImportQualificationTypein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDeclare
public T visitDeclare(PostgreSQLStatementParser.DeclareContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.declare().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDeclarein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCursorOptions
public T visitCursorOptions(PostgreSQLStatementParser.CursorOptionsContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.cursorOptions().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCursorOptionsin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCursorOption
public T visitCursorOption(PostgreSQLStatementParser.CursorOptionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.cursorOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCursorOptionin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMove
public T visitMove(PostgreSQLStatementParser.MoveContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.move().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitMovein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFetch
public T visitFetch(PostgreSQLStatementParser.FetchContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.fetch().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitFetchin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitListen
public T visitListen(PostgreSQLStatementParser.ListenContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.listen().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitListenin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUnlisten
public T visitUnlisten(PostgreSQLStatementParser.UnlistenContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.unlisten().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitUnlistenin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNotifyStmt
public T visitNotifyStmt(PostgreSQLStatementParser.NotifyStmtContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.notifyStmt().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitNotifyStmtin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNext
public T visitNext(PostgreSQLStatementParser.NextContext ctx)
Visit a parse tree produced by thenextlabeled alternative inPostgreSQLStatementParser.direction().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitNextin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPrior
public T visitPrior(PostgreSQLStatementParser.PriorContext ctx)
Visit a parse tree produced by thepriorlabeled alternative inPostgreSQLStatementParser.direction().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitPriorin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFirst
public T visitFirst(PostgreSQLStatementParser.FirstContext ctx)
Visit a parse tree produced by thefirstlabeled alternative inPostgreSQLStatementParser.direction().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitFirstin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLast
public T visitLast(PostgreSQLStatementParser.LastContext ctx)
Visit a parse tree produced by thelastlabeled alternative inPostgreSQLStatementParser.direction().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitLastin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAbsoluteCount
public T visitAbsoluteCount(PostgreSQLStatementParser.AbsoluteCountContext ctx)
Visit a parse tree produced by theabsoluteCountlabeled alternative inPostgreSQLStatementParser.direction().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAbsoluteCountin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRelativeCount
public T visitRelativeCount(PostgreSQLStatementParser.RelativeCountContext ctx)
Visit a parse tree produced by therelativeCountlabeled alternative inPostgreSQLStatementParser.direction().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitRelativeCountin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCount
public T visitCount(PostgreSQLStatementParser.CountContext ctx)
Visit a parse tree produced by thecountlabeled alternative inPostgreSQLStatementParser.direction().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCountin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAll
public T visitAll(PostgreSQLStatementParser.AllContext ctx)
Visit a parse tree produced by thealllabeled alternative inPostgreSQLStatementParser.direction().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAllin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitForward
public T visitForward(PostgreSQLStatementParser.ForwardContext ctx)
Visit a parse tree produced by theforwardlabeled alternative inPostgreSQLStatementParser.direction().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitForwardin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitForwardCount
public T visitForwardCount(PostgreSQLStatementParser.ForwardCountContext ctx)
Visit a parse tree produced by theforwardCountlabeled alternative inPostgreSQLStatementParser.direction().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitForwardCountin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitForwardAll
public T visitForwardAll(PostgreSQLStatementParser.ForwardAllContext ctx)
Visit a parse tree produced by theforwardAlllabeled alternative inPostgreSQLStatementParser.direction().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitForwardAllin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBackward
public T visitBackward(PostgreSQLStatementParser.BackwardContext ctx)
Visit a parse tree produced by thebackwardlabeled alternative inPostgreSQLStatementParser.direction().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitBackwardin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBackwardCount
public T visitBackwardCount(PostgreSQLStatementParser.BackwardCountContext ctx)
Visit a parse tree produced by thebackwardCountlabeled alternative inPostgreSQLStatementParser.direction().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitBackwardCountin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBackwardAll
public T visitBackwardAll(PostgreSQLStatementParser.BackwardAllContext ctx)
Visit a parse tree produced by thebackwardAlllabeled alternative inPostgreSQLStatementParser.direction().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitBackwardAllin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPrepare
public T visitPrepare(PostgreSQLStatementParser.PrepareContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.prepare().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitPreparein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitReindex
public T visitReindex(PostgreSQLStatementParser.ReindexContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.reindex().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitReindexin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitReIndexClauses
public T visitReIndexClauses(PostgreSQLStatementParser.ReIndexClausesContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.reIndexClauses().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitReIndexClausesin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitReindexOptionList
public T visitReindexOptionList(PostgreSQLStatementParser.ReindexOptionListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.reindexOptionList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitReindexOptionListin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitReindexOptionElem
public T visitReindexOptionElem(PostgreSQLStatementParser.ReindexOptionElemContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.reindexOptionElem().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitReindexOptionElemin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitReindexTargetMultitable
public T visitReindexTargetMultitable(PostgreSQLStatementParser.ReindexTargetMultitableContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.reindexTargetMultitable().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitReindexTargetMultitablein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitReindexTargetType
public T visitReindexTargetType(PostgreSQLStatementParser.ReindexTargetTypeContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.reindexTargetType().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitReindexTargetTypein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDeallocate
public T visitDeallocate(PostgreSQLStatementParser.DeallocateContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.deallocate().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDeallocatein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPrepTypeClause
public T visitPrepTypeClause(PostgreSQLStatementParser.PrepTypeClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.prepTypeClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitPrepTypeClausein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRefreshMaterializedView
public T visitRefreshMaterializedView(PostgreSQLStatementParser.RefreshMaterializedViewContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.refreshMaterializedView().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitRefreshMaterializedViewin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterForeignTable
public T visitAlterForeignTable(PostgreSQLStatementParser.AlterForeignTableContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterForeignTable().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterForeignTablein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterForeignTableClauses
public T visitAlterForeignTableClauses(PostgreSQLStatementParser.AlterForeignTableClausesContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterForeignTableClauses().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterForeignTableClausesin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateOperator
public T visitCreateOperator(PostgreSQLStatementParser.CreateOperatorContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createOperator().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCreateOperatorin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateOperatorClass
public T visitCreateOperatorClass(PostgreSQLStatementParser.CreateOperatorClassContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createOperatorClass().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCreateOperatorClassin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateOperatorFamily
public T visitCreateOperatorFamily(PostgreSQLStatementParser.CreateOperatorFamilyContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createOperatorFamily().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCreateOperatorFamilyin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateSchema
public T visitCreateSchema(PostgreSQLStatementParser.CreateSchemaContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createSchema().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCreateSchemain interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateSchemaClauses
public T visitCreateSchemaClauses(PostgreSQLStatementParser.CreateSchemaClausesContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createSchemaClauses().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCreateSchemaClausesin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSchemaEltList
public T visitSchemaEltList(PostgreSQLStatementParser.SchemaEltListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.schemaEltList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSchemaEltListin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSchemaStmt
public T visitSchemaStmt(PostgreSQLStatementParser.SchemaStmtContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.schemaStmt().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSchemaStmtin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSecurityLabelStmt
public T visitSecurityLabelStmt(PostgreSQLStatementParser.SecurityLabelStmtContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.securityLabelStmt().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSecurityLabelStmtin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSecurityLabel
public T visitSecurityLabel(PostgreSQLStatementParser.SecurityLabelContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.securityLabel().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSecurityLabelin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSecurityLabelClausces
public T visitSecurityLabelClausces(PostgreSQLStatementParser.SecurityLabelClauscesContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.securityLabelClausces().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSecurityLabelClauscesin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPrivilegeClause
public T visitPrivilegeClause(PostgreSQLStatementParser.PrivilegeClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.privilegeClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitPrivilegeClausein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRoleClause
public T visitRoleClause(PostgreSQLStatementParser.RoleClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.roleClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitRoleClausein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPrivilegeTypes
public T visitPrivilegeTypes(PostgreSQLStatementParser.PrivilegeTypesContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.privilegeTypes().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitPrivilegeTypesin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOnObjectClause
public T visitOnObjectClause(PostgreSQLStatementParser.OnObjectClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.onObjectClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitOnObjectClausein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNumericOnlyList
public T visitNumericOnlyList(PostgreSQLStatementParser.NumericOnlyListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.numericOnlyList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitNumericOnlyListin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPrivilegeLevel
public T visitPrivilegeLevel(PostgreSQLStatementParser.PrivilegeLevelContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.privilegeLevel().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitPrivilegeLevelin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRoutineName
public T visitRoutineName(PostgreSQLStatementParser.RoutineNameContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.routineName().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitRoutineNamein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPrivilegeType
public T visitPrivilegeType(PostgreSQLStatementParser.PrivilegeTypeContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.privilegeType().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitPrivilegeTypein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterSchema
public T visitAlterSchema(PostgreSQLStatementParser.AlterSchemaContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterSchema().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterSchemain interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropSchema
public T visitDropSchema(PostgreSQLStatementParser.DropSchemaContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropSchema().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDropSchemain interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitShow
public T visitShow(PostgreSQLStatementParser.ShowContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.show().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitShowin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSet
public T visitSet(PostgreSQLStatementParser.SetContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.set().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSetin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRuntimeScope
public T visitRuntimeScope(PostgreSQLStatementParser.RuntimeScopeContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.runtimeScope().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitRuntimeScopein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTimeZoneClause
public T visitTimeZoneClause(PostgreSQLStatementParser.TimeZoneClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.timeZoneClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTimeZoneClausein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitConfigurationParameterClause
public T visitConfigurationParameterClause(PostgreSQLStatementParser.ConfigurationParameterClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.configurationParameterClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitConfigurationParameterClausein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitResetParameter
public T visitResetParameter(PostgreSQLStatementParser.ResetParameterContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.resetParameter().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitResetParameterin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExplain
public T visitExplain(PostgreSQLStatementParser.ExplainContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.explain().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitExplainin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExplainableStmt
public T visitExplainableStmt(PostgreSQLStatementParser.ExplainableStmtContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.explainableStmt().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitExplainableStmtin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExplainOptionList
public T visitExplainOptionList(PostgreSQLStatementParser.ExplainOptionListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.explainOptionList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitExplainOptionListin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExplainOptionElem
public T visitExplainOptionElem(PostgreSQLStatementParser.ExplainOptionElemContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.explainOptionElem().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitExplainOptionElemin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExplainOptionArg
public T visitExplainOptionArg(PostgreSQLStatementParser.ExplainOptionArgContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.explainOptionArg().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitExplainOptionArgin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExplainOptionName
public T visitExplainOptionName(PostgreSQLStatementParser.ExplainOptionNameContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.explainOptionName().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitExplainOptionNamein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAnalyzeKeyword
public T visitAnalyzeKeyword(PostgreSQLStatementParser.AnalyzeKeywordContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.analyzeKeyword().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAnalyzeKeywordin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAnalyzeTable
public T visitAnalyzeTable(PostgreSQLStatementParser.AnalyzeTableContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.analyzeTable().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAnalyzeTablein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitVacuumRelationList
public T visitVacuumRelationList(PostgreSQLStatementParser.VacuumRelationListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.vacuumRelationList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitVacuumRelationListin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitVacuumRelation
public T visitVacuumRelation(PostgreSQLStatementParser.VacuumRelationContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.vacuumRelation().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitVacuumRelationin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitVacAnalyzeOptionList
public T visitVacAnalyzeOptionList(PostgreSQLStatementParser.VacAnalyzeOptionListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.vacAnalyzeOptionList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitVacAnalyzeOptionListin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitVacAnalyzeOptionElem
public T visitVacAnalyzeOptionElem(PostgreSQLStatementParser.VacAnalyzeOptionElemContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.vacAnalyzeOptionElem().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitVacAnalyzeOptionElemin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitVacAnalyzeOptionArg
public T visitVacAnalyzeOptionArg(PostgreSQLStatementParser.VacAnalyzeOptionArgContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.vacAnalyzeOptionArg().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitVacAnalyzeOptionArgin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitVacAnalyzeOptionName
public T visitVacAnalyzeOptionName(PostgreSQLStatementParser.VacAnalyzeOptionNameContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.vacAnalyzeOptionName().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitVacAnalyzeOptionNamein interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLoad
public T visitLoad(PostgreSQLStatementParser.LoadContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.load().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitLoadin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitVacuum
public T visitVacuum(PostgreSQLStatementParser.VacuumContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.vacuum().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitVacuumin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEmptyStatement
public T visitEmptyStatement(PostgreSQLStatementParser.EmptyStatementContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.emptyStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitEmptyStatementin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCall
public T visitCall(PostgreSQLStatementParser.CallContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.call().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCallin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCallArguments
public T visitCallArguments(PostgreSQLStatementParser.CallArgumentsContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.callArguments().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCallArgumentsin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCallArgument
public T visitCallArgument(PostgreSQLStatementParser.CallArgumentContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.callArgument().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCallArgumentin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPositionalNotation
public T visitPositionalNotation(PostgreSQLStatementParser.PositionalNotationContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.positionalNotation().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitPositionalNotationin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNamedNotation
public T visitNamedNotation(PostgreSQLStatementParser.NamedNotationContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.namedNotation().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitNamedNotationin interfacePostgreSQLStatementParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
-