Interface PostgreSQLStatementParserVisitor<T>
-
- Type Parameters:
T- The return type of the visit operation. UseVoidfor operations with no return type.
- All Superinterfaces:
org.antlr.v4.runtime.tree.ParseTreeVisitor<T>
- All Known Implementing Classes:
PostgreSQLDALStatementVisitor,PostgreSQLDCLStatementVisitor,PostgreSQLDDLStatementVisitor,PostgreSQLDMLStatementVisitor,PostgreSQLStatementParserBaseVisitor,PostgreSQLStatementVisitor,PostgreSQLTCLStatementVisitor
public interface PostgreSQLStatementParserVisitor<T> extends org.antlr.v4.runtime.tree.ParseTreeVisitor<T>This interface defines a complete generic visitor for a parse tree produced byPostgreSQLStatementParser.
-
-
Method Summary
-
-
-
Method Detail
-
visitExecute
T visitExecute(PostgreSQLStatementParser.ExecuteContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.execute().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSetTransaction
T visitSetTransaction(PostgreSQLStatementParser.SetTransactionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.setTransaction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBeginTransaction
T visitBeginTransaction(PostgreSQLStatementParser.BeginTransactionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.beginTransaction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCommit
T visitCommit(PostgreSQLStatementParser.CommitContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.commit().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSavepoint
T visitSavepoint(PostgreSQLStatementParser.SavepointContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.savepoint().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAbort
T visitAbort(PostgreSQLStatementParser.AbortContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.abort().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitStartTransaction
T visitStartTransaction(PostgreSQLStatementParser.StartTransactionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.startTransaction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEnd
T visitEnd(PostgreSQLStatementParser.EndContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.end().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRollback
T visitRollback(PostgreSQLStatementParser.RollbackContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.rollback().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitReleaseSavepoint
T visitReleaseSavepoint(PostgreSQLStatementParser.ReleaseSavepointContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.releaseSavepoint().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRollbackToSavepoint
T visitRollbackToSavepoint(PostgreSQLStatementParser.RollbackToSavepointContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.rollbackToSavepoint().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCommitPrepared
T visitCommitPrepared(PostgreSQLStatementParser.CommitPreparedContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.commitPrepared().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRollbackPrepared
T visitRollbackPrepared(PostgreSQLStatementParser.RollbackPreparedContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.rollbackPrepared().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSetConstraints
T visitSetConstraints(PostgreSQLStatementParser.SetConstraintsContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.setConstraints().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitConstraintsSetMode
T visitConstraintsSetMode(PostgreSQLStatementParser.ConstraintsSetModeContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.constraintsSetMode().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitConstraintsSetList
T visitConstraintsSetList(PostgreSQLStatementParser.ConstraintsSetListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.constraintsSetList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLock
T visitLock(PostgreSQLStatementParser.LockContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.lock().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLockType
T visitLockType(PostgreSQLStatementParser.LockTypeContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.lockType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPrepareTransaction
T visitPrepareTransaction(PostgreSQLStatementParser.PrepareTransactionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.prepareTransaction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInsert
T visitInsert(PostgreSQLStatementParser.InsertContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.insert().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInsertTarget
T visitInsertTarget(PostgreSQLStatementParser.InsertTargetContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.insertTarget().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInsertRest
T visitInsertRest(PostgreSQLStatementParser.InsertRestContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.insertRest().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOverrideKind
T visitOverrideKind(PostgreSQLStatementParser.OverrideKindContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.overrideKind().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInsertColumnList
T visitInsertColumnList(PostgreSQLStatementParser.InsertColumnListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.insertColumnList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInsertColumnItem
T visitInsertColumnItem(PostgreSQLStatementParser.InsertColumnItemContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.insertColumnItem().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOptOnConflict
T visitOptOnConflict(PostgreSQLStatementParser.OptOnConflictContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.optOnConflict().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOptConfExpr
T visitOptConfExpr(PostgreSQLStatementParser.OptConfExprContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.optConfExpr().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUpdate
T visitUpdate(PostgreSQLStatementParser.UpdateContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.update().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSetClauseList
T visitSetClauseList(PostgreSQLStatementParser.SetClauseListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.setClauseList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSetClause
T visitSetClause(PostgreSQLStatementParser.SetClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.setClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSetTarget
T visitSetTarget(PostgreSQLStatementParser.SetTargetContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.setTarget().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSetTargetList
T visitSetTargetList(PostgreSQLStatementParser.SetTargetListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.setTargetList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitReturningClause
T visitReturningClause(PostgreSQLStatementParser.ReturningClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.returningClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDelete
T visitDelete(PostgreSQLStatementParser.DeleteContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.delete().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRelationExprOptAlias
T visitRelationExprOptAlias(PostgreSQLStatementParser.RelationExprOptAliasContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.relationExprOptAlias().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUsingClause
T visitUsingClause(PostgreSQLStatementParser.UsingClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.usingClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSelect
T visitSelect(PostgreSQLStatementParser.SelectContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.select().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSelectWithParens
T visitSelectWithParens(PostgreSQLStatementParser.SelectWithParensContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.selectWithParens().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSelectNoParens
T visitSelectNoParens(PostgreSQLStatementParser.SelectNoParensContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.selectNoParens().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSelectClauseN
T visitSelectClauseN(PostgreSQLStatementParser.SelectClauseNContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.selectClauseN().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSimpleSelect
T visitSimpleSelect(PostgreSQLStatementParser.SimpleSelectContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.simpleSelect().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWithClause
T visitWithClause(PostgreSQLStatementParser.WithClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.withClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIntoClause
T visitIntoClause(PostgreSQLStatementParser.IntoClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.intoClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOptTempTableName
T visitOptTempTableName(PostgreSQLStatementParser.OptTempTableNameContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.optTempTableName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCteList
T visitCteList(PostgreSQLStatementParser.CteListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.cteList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCommonTableExpr
T visitCommonTableExpr(PostgreSQLStatementParser.CommonTableExprContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.commonTableExpr().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOptMaterialized
T visitOptMaterialized(PostgreSQLStatementParser.OptMaterializedContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.optMaterialized().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOptNameList
T visitOptNameList(PostgreSQLStatementParser.OptNameListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.optNameList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPreparableStmt
T visitPreparableStmt(PostgreSQLStatementParser.PreparableStmtContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.preparableStmt().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitForLockingClause
T visitForLockingClause(PostgreSQLStatementParser.ForLockingClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.forLockingClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitForLockingItems
T visitForLockingItems(PostgreSQLStatementParser.ForLockingItemsContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.forLockingItems().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitForLockingItem
T visitForLockingItem(PostgreSQLStatementParser.ForLockingItemContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.forLockingItem().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNowaitOrSkip
T visitNowaitOrSkip(PostgreSQLStatementParser.NowaitOrSkipContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.nowaitOrSkip().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitForLockingStrength
T visitForLockingStrength(PostgreSQLStatementParser.ForLockingStrengthContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.forLockingStrength().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLockedRelsList
T visitLockedRelsList(PostgreSQLStatementParser.LockedRelsListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.lockedRelsList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitQualifiedNameList
T visitQualifiedNameList(PostgreSQLStatementParser.QualifiedNameListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.qualifiedNameList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSelectLimit
T visitSelectLimit(PostgreSQLStatementParser.SelectLimitContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.selectLimit().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitValuesClause
T visitValuesClause(PostgreSQLStatementParser.ValuesClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.valuesClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLimitClause
T visitLimitClause(PostgreSQLStatementParser.LimitClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.limitClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOffsetClause
T visitOffsetClause(PostgreSQLStatementParser.OffsetClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.offsetClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSelectLimitValue
T visitSelectLimitValue(PostgreSQLStatementParser.SelectLimitValueContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.selectLimitValue().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSelectOffsetValue
T visitSelectOffsetValue(PostgreSQLStatementParser.SelectOffsetValueContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.selectOffsetValue().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSelectFetchValue
T visitSelectFetchValue(PostgreSQLStatementParser.SelectFetchValueContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.selectFetchValue().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRowOrRows
T visitRowOrRows(PostgreSQLStatementParser.RowOrRowsContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.rowOrRows().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFirstOrNext
T visitFirstOrNext(PostgreSQLStatementParser.FirstOrNextContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.firstOrNext().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOnlyOrWithTies
T visitOnlyOrWithTies(PostgreSQLStatementParser.OnlyOrWithTiesContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.onlyOrWithTies().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTargetList
T visitTargetList(PostgreSQLStatementParser.TargetListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.targetList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTargetEl
T visitTargetEl(PostgreSQLStatementParser.TargetElContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.targetEl().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGroupClause
T visitGroupClause(PostgreSQLStatementParser.GroupClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.groupClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGroupByList
T visitGroupByList(PostgreSQLStatementParser.GroupByListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.groupByList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGroupByItem
T visitGroupByItem(PostgreSQLStatementParser.GroupByItemContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.groupByItem().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEmptyGroupingSet
T visitEmptyGroupingSet(PostgreSQLStatementParser.EmptyGroupingSetContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.emptyGroupingSet().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRollupClause
T visitRollupClause(PostgreSQLStatementParser.RollupClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.rollupClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCubeClause
T visitCubeClause(PostgreSQLStatementParser.CubeClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.cubeClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGroupingSetsClause
T visitGroupingSetsClause(PostgreSQLStatementParser.GroupingSetsClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.groupingSetsClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWindowClause
T visitWindowClause(PostgreSQLStatementParser.WindowClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.windowClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWindowDefinitionList
T visitWindowDefinitionList(PostgreSQLStatementParser.WindowDefinitionListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.windowDefinitionList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWindowDefinition
T visitWindowDefinition(PostgreSQLStatementParser.WindowDefinitionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.windowDefinition().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWindowSpecification
T visitWindowSpecification(PostgreSQLStatementParser.WindowSpecificationContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.windowSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExistingWindowName
T visitExistingWindowName(PostgreSQLStatementParser.ExistingWindowNameContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.existingWindowName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPartitionClause
T visitPartitionClause(PostgreSQLStatementParser.PartitionClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.partitionClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFrameClause
T visitFrameClause(PostgreSQLStatementParser.FrameClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.frameClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFrameExtent
T visitFrameExtent(PostgreSQLStatementParser.FrameExtentContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.frameExtent().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFrameBound
T visitFrameBound(PostgreSQLStatementParser.FrameBoundContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.frameBound().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOptWindowExclusionClause
T visitOptWindowExclusionClause(PostgreSQLStatementParser.OptWindowExclusionClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.optWindowExclusionClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlias
T visitAlias(PostgreSQLStatementParser.AliasContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alias().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFromClause
T visitFromClause(PostgreSQLStatementParser.FromClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.fromClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFromList
T visitFromList(PostgreSQLStatementParser.FromListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.fromList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableReference
T visitTableReference(PostgreSQLStatementParser.TableReferenceContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.tableReference().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitJoinedTable
T visitJoinedTable(PostgreSQLStatementParser.JoinedTableContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.joinedTable().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCrossJoinType
T visitCrossJoinType(PostgreSQLStatementParser.CrossJoinTypeContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.crossJoinType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInnerJoinType
T visitInnerJoinType(PostgreSQLStatementParser.InnerJoinTypeContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.innerJoinType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOuterJoinType
T visitOuterJoinType(PostgreSQLStatementParser.OuterJoinTypeContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.outerJoinType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNaturalJoinType
T visitNaturalJoinType(PostgreSQLStatementParser.NaturalJoinTypeContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.naturalJoinType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitJoinOuter
T visitJoinOuter(PostgreSQLStatementParser.JoinOuterContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.joinOuter().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitJoinQual
T visitJoinQual(PostgreSQLStatementParser.JoinQualContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.joinQual().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRelationExpr
T visitRelationExpr(PostgreSQLStatementParser.RelationExprContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.relationExpr().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWhereClause
T visitWhereClause(PostgreSQLStatementParser.WhereClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.whereClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWhereOrCurrentClause
T visitWhereOrCurrentClause(PostgreSQLStatementParser.WhereOrCurrentClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.whereOrCurrentClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitHavingClause
T visitHavingClause(PostgreSQLStatementParser.HavingClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.havingClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDoStatement
T visitDoStatement(PostgreSQLStatementParser.DoStatementContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.doStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDostmtOptList
T visitDostmtOptList(PostgreSQLStatementParser.DostmtOptListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dostmtOptList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDostmtOptItem
T visitDostmtOptItem(PostgreSQLStatementParser.DostmtOptItemContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dostmtOptItem().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCheckpoint
T visitCheckpoint(PostgreSQLStatementParser.CheckpointContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.checkpoint().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCopy
T visitCopy(PostgreSQLStatementParser.CopyContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.copy().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCopyWithTableOrQuery
T visitCopyWithTableOrQuery(PostgreSQLStatementParser.CopyWithTableOrQueryContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.copyWithTableOrQuery().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCopyOptionList
T visitCopyOptionList(PostgreSQLStatementParser.CopyOptionListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.copyOptionList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCopyOption
T visitCopyOption(PostgreSQLStatementParser.CopyOptionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.copyOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCopyWithTableOrQueryBinaryCsv
T visitCopyWithTableOrQueryBinaryCsv(PostgreSQLStatementParser.CopyWithTableOrQueryBinaryCsvContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.copyWithTableOrQueryBinaryCsv().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCopyWithTableBinary
T visitCopyWithTableBinary(PostgreSQLStatementParser.CopyWithTableBinaryContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.copyWithTableBinary().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitParameterMarker
T visitParameterMarker(PostgreSQLStatementParser.ParameterMarkerContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.parameterMarker().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitReservedKeyword
T visitReservedKeyword(PostgreSQLStatementParser.ReservedKeywordContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.reservedKeyword().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNumberLiterals
T visitNumberLiterals(PostgreSQLStatementParser.NumberLiteralsContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.numberLiterals().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLiteralsType
T visitLiteralsType(PostgreSQLStatementParser.LiteralsTypeContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.literalsType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIdentifier
T visitIdentifier(PostgreSQLStatementParser.IdentifierContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.identifier().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUescape
T visitUescape(PostgreSQLStatementParser.UescapeContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.uescape().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUnreservedWord
T visitUnreservedWord(PostgreSQLStatementParser.UnreservedWordContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.unreservedWord().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTypeFuncNameKeyword
T visitTypeFuncNameKeyword(PostgreSQLStatementParser.TypeFuncNameKeywordContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.typeFuncNameKeyword().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSchemaName
T visitSchemaName(PostgreSQLStatementParser.SchemaNameContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.schemaName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableName
T visitTableName(PostgreSQLStatementParser.TableNameContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.tableName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitColumnName
T visitColumnName(PostgreSQLStatementParser.ColumnNameContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.columnName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOwner
T visitOwner(PostgreSQLStatementParser.OwnerContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.owner().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitName
T visitName(PostgreSQLStatementParser.NameContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.name().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableNames
T visitTableNames(PostgreSQLStatementParser.TableNamesContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.tableNames().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitColumnNames
T visitColumnNames(PostgreSQLStatementParser.ColumnNamesContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.columnNames().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCollationName
T visitCollationName(PostgreSQLStatementParser.CollationNameContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.collationName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIndexName
T visitIndexName(PostgreSQLStatementParser.IndexNameContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.indexName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitConstraintName
T visitConstraintName(PostgreSQLStatementParser.ConstraintNameContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.constraintName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPrimaryKey
T visitPrimaryKey(PostgreSQLStatementParser.PrimaryKeyContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.primaryKey().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAndOperator
T visitAndOperator(PostgreSQLStatementParser.AndOperatorContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.andOperator().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOrOperator
T visitOrOperator(PostgreSQLStatementParser.OrOperatorContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.orOperator().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitComparisonOperator
T visitComparisonOperator(PostgreSQLStatementParser.ComparisonOperatorContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.comparisonOperator().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPatternMatchingOperator
T visitPatternMatchingOperator(PostgreSQLStatementParser.PatternMatchingOperatorContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.patternMatchingOperator().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCursorName
T visitCursorName(PostgreSQLStatementParser.CursorNameContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.cursorName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAExpr
T visitAExpr(PostgreSQLStatementParser.AExprContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.aExpr().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBExpr
T visitBExpr(PostgreSQLStatementParser.BExprContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.bExpr().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCExpr
T visitCExpr(PostgreSQLStatementParser.CExprContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.cExpr().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIndirection
T visitIndirection(PostgreSQLStatementParser.IndirectionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.indirection().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOptIndirection
T visitOptIndirection(PostgreSQLStatementParser.OptIndirectionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.optIndirection().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIndirectionEl
T visitIndirectionEl(PostgreSQLStatementParser.IndirectionElContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.indirectionEl().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSliceBound
T visitSliceBound(PostgreSQLStatementParser.SliceBoundContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.sliceBound().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInExpr
T visitInExpr(PostgreSQLStatementParser.InExprContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.inExpr().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCaseExpr
T visitCaseExpr(PostgreSQLStatementParser.CaseExprContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.caseExpr().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWhenClauseList
T visitWhenClauseList(PostgreSQLStatementParser.WhenClauseListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.whenClauseList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWhenClause
T visitWhenClause(PostgreSQLStatementParser.WhenClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.whenClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCaseDefault
T visitCaseDefault(PostgreSQLStatementParser.CaseDefaultContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.caseDefault().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCaseArg
T visitCaseArg(PostgreSQLStatementParser.CaseArgContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.caseArg().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitColumnref
T visitColumnref(PostgreSQLStatementParser.ColumnrefContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.columnref().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitQualOp
T visitQualOp(PostgreSQLStatementParser.QualOpContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.qualOp().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSubqueryOp
T visitSubqueryOp(PostgreSQLStatementParser.SubqueryOpContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.subqueryOp().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAllOp
T visitAllOp(PostgreSQLStatementParser.AllOpContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.allOp().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOp
T visitOp(PostgreSQLStatementParser.OpContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.op().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMathOperator
T visitMathOperator(PostgreSQLStatementParser.MathOperatorContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.mathOperator().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitJsonExtract
T visitJsonExtract(PostgreSQLStatementParser.JsonExtractContext ctx)
Visit a parse tree produced by thejsonExtractlabeled alternative inPostgreSQLStatementParser.jsonOperator().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitJsonExtractText
T visitJsonExtractText(PostgreSQLStatementParser.JsonExtractTextContext ctx)
Visit a parse tree produced by thejsonExtractTextlabeled alternative inPostgreSQLStatementParser.jsonOperator().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitJsonPathExtract
T visitJsonPathExtract(PostgreSQLStatementParser.JsonPathExtractContext ctx)
Visit a parse tree produced by thejsonPathExtractlabeled alternative inPostgreSQLStatementParser.jsonOperator().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitJsonPathExtractText
T visitJsonPathExtractText(PostgreSQLStatementParser.JsonPathExtractTextContext ctx)
Visit a parse tree produced by thejsonPathExtractTextlabeled alternative inPostgreSQLStatementParser.jsonOperator().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitJsonbContainRight
T visitJsonbContainRight(PostgreSQLStatementParser.JsonbContainRightContext ctx)
Visit a parse tree produced by thejsonbContainRightlabeled alternative inPostgreSQLStatementParser.jsonOperator().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitJsonbContainLeft
T visitJsonbContainLeft(PostgreSQLStatementParser.JsonbContainLeftContext ctx)
Visit a parse tree produced by thejsonbContainLeftlabeled alternative inPostgreSQLStatementParser.jsonOperator().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitJsonbContainTopKey
T visitJsonbContainTopKey(PostgreSQLStatementParser.JsonbContainTopKeyContext ctx)
Visit a parse tree produced by thejsonbContainTopKeylabeled alternative inPostgreSQLStatementParser.jsonOperator().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitJsonbContainAnyTopKey
T visitJsonbContainAnyTopKey(PostgreSQLStatementParser.JsonbContainAnyTopKeyContext ctx)
Visit a parse tree produced by thejsonbContainAnyTopKeylabeled alternative inPostgreSQLStatementParser.jsonOperator().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitJsonbContainAllTopKey
T visitJsonbContainAllTopKey(PostgreSQLStatementParser.JsonbContainAllTopKeyContext ctx)
Visit a parse tree produced by thejsonbContainAllTopKeylabeled alternative inPostgreSQLStatementParser.jsonOperator().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitJsonbConcat
T visitJsonbConcat(PostgreSQLStatementParser.JsonbConcatContext ctx)
Visit a parse tree produced by thejsonbConcatlabeled alternative inPostgreSQLStatementParser.jsonOperator().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitJsonbDelete
T visitJsonbDelete(PostgreSQLStatementParser.JsonbDeleteContext ctx)
Visit a parse tree produced by thejsonbDeletelabeled alternative inPostgreSQLStatementParser.jsonOperator().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitJsonbPathDelete
T visitJsonbPathDelete(PostgreSQLStatementParser.JsonbPathDeleteContext ctx)
Visit a parse tree produced by thejsonbPathDeletelabeled alternative inPostgreSQLStatementParser.jsonOperator().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitJsonbPathContainAnyValue
T visitJsonbPathContainAnyValue(PostgreSQLStatementParser.JsonbPathContainAnyValueContext ctx)
Visit a parse tree produced by thejsonbPathContainAnyValuelabeled alternative inPostgreSQLStatementParser.jsonOperator().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitJsonbPathPredicateCheck
T visitJsonbPathPredicateCheck(PostgreSQLStatementParser.JsonbPathPredicateCheckContext ctx)
Visit a parse tree produced by thejsonbPathPredicateChecklabeled alternative inPostgreSQLStatementParser.jsonOperator().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGeometricOperator
T visitGeometricOperator(PostgreSQLStatementParser.GeometricOperatorContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.geometricOperator().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitQualAllOp
T visitQualAllOp(PostgreSQLStatementParser.QualAllOpContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.qualAllOp().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAscDesc
T visitAscDesc(PostgreSQLStatementParser.AscDescContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.ascDesc().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAnyOperator
T visitAnyOperator(PostgreSQLStatementParser.AnyOperatorContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.anyOperator().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWindowExclusionClause
T visitWindowExclusionClause(PostgreSQLStatementParser.WindowExclusionClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.windowExclusionClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRow
T visitRow(PostgreSQLStatementParser.RowContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.row().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExplicitRow
T visitExplicitRow(PostgreSQLStatementParser.ExplicitRowContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.explicitRow().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitImplicitRow
T visitImplicitRow(PostgreSQLStatementParser.ImplicitRowContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.implicitRow().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSubType
T visitSubType(PostgreSQLStatementParser.SubTypeContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.subType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitArrayExpr
T visitArrayExpr(PostgreSQLStatementParser.ArrayExprContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.arrayExpr().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitArrayExprList
T visitArrayExprList(PostgreSQLStatementParser.ArrayExprListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.arrayExprList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFuncArgList
T visitFuncArgList(PostgreSQLStatementParser.FuncArgListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.funcArgList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitParamName
T visitParamName(PostgreSQLStatementParser.ParamNameContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.paramName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFuncArgExpr
T visitFuncArgExpr(PostgreSQLStatementParser.FuncArgExprContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.funcArgExpr().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTypeList
T visitTypeList(PostgreSQLStatementParser.TypeListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.typeList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFuncApplication
T visitFuncApplication(PostgreSQLStatementParser.FuncApplicationContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.funcApplication().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFuncName
T visitFuncName(PostgreSQLStatementParser.FuncNameContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.funcName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAexprConst
T visitAexprConst(PostgreSQLStatementParser.AexprConstContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.aexprConst().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNumberConst
T visitNumberConst(PostgreSQLStatementParser.NumberConstContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.numberConst().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitQualifiedName
T visitQualifiedName(PostgreSQLStatementParser.QualifiedNameContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.qualifiedName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitColId
T visitColId(PostgreSQLStatementParser.ColIdContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.colId().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitChannelName
T visitChannelName(PostgreSQLStatementParser.ChannelNameContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.channelName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTypeFunctionName
T visitTypeFunctionName(PostgreSQLStatementParser.TypeFunctionNameContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.typeFunctionName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFunctionTable
T visitFunctionTable(PostgreSQLStatementParser.FunctionTableContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.functionTable().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitXmlTable
T visitXmlTable(PostgreSQLStatementParser.XmlTableContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.xmlTable().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitXmlTableColumnList
T visitXmlTableColumnList(PostgreSQLStatementParser.XmlTableColumnListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.xmlTableColumnList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitXmlTableColumnEl
T visitXmlTableColumnEl(PostgreSQLStatementParser.XmlTableColumnElContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.xmlTableColumnEl().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitXmlTableColumnOptionList
T visitXmlTableColumnOptionList(PostgreSQLStatementParser.XmlTableColumnOptionListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.xmlTableColumnOptionList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitXmlTableColumnOptionEl
T visitXmlTableColumnOptionEl(PostgreSQLStatementParser.XmlTableColumnOptionElContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.xmlTableColumnOptionEl().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitXmlNamespaceList
T visitXmlNamespaceList(PostgreSQLStatementParser.XmlNamespaceListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.xmlNamespaceList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitXmlNamespaceEl
T visitXmlNamespaceEl(PostgreSQLStatementParser.XmlNamespaceElContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.xmlNamespaceEl().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFuncExpr
T visitFuncExpr(PostgreSQLStatementParser.FuncExprContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.funcExpr().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWithinGroupClause
T visitWithinGroupClause(PostgreSQLStatementParser.WithinGroupClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.withinGroupClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFilterClause
T visitFilterClause(PostgreSQLStatementParser.FilterClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.filterClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFunctionExprWindowless
T visitFunctionExprWindowless(PostgreSQLStatementParser.FunctionExprWindowlessContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.functionExprWindowless().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOrdinality
T visitOrdinality(PostgreSQLStatementParser.OrdinalityContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.ordinality().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFunctionExprCommonSubexpr
T visitFunctionExprCommonSubexpr(PostgreSQLStatementParser.FunctionExprCommonSubexprContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.functionExprCommonSubexpr().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTypeName
T visitTypeName(PostgreSQLStatementParser.TypeNameContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.typeName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSimpleTypeName
T visitSimpleTypeName(PostgreSQLStatementParser.SimpleTypeNameContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.simpleTypeName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitConstTypeName
T visitConstTypeName(PostgreSQLStatementParser.ConstTypeNameContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.constTypeName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExprList
T visitExprList(PostgreSQLStatementParser.ExprListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.exprList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExtractList
T visitExtractList(PostgreSQLStatementParser.ExtractListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.extractList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExtractArg
T visitExtractArg(PostgreSQLStatementParser.ExtractArgContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.extractArg().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGenericType
T visitGenericType(PostgreSQLStatementParser.GenericTypeContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.genericType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTypeModifiers
T visitTypeModifiers(PostgreSQLStatementParser.TypeModifiersContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.typeModifiers().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNumeric
T visitNumeric(PostgreSQLStatementParser.NumericContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.numeric().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitConstDatetime
T visitConstDatetime(PostgreSQLStatementParser.ConstDatetimeContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.constDatetime().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTimezone
T visitTimezone(PostgreSQLStatementParser.TimezoneContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.timezone().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCharacter
T visitCharacter(PostgreSQLStatementParser.CharacterContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.character().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCharacterWithLength
T visitCharacterWithLength(PostgreSQLStatementParser.CharacterWithLengthContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.characterWithLength().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCharacterWithoutLength
T visitCharacterWithoutLength(PostgreSQLStatementParser.CharacterWithoutLengthContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.characterWithoutLength().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCharacterClause
T visitCharacterClause(PostgreSQLStatementParser.CharacterClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.characterClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOptFloat
T visitOptFloat(PostgreSQLStatementParser.OptFloatContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.optFloat().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAttrs
T visitAttrs(PostgreSQLStatementParser.AttrsContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.attrs().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAttrName
T visitAttrName(PostgreSQLStatementParser.AttrNameContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.attrName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitColLable
T visitColLable(PostgreSQLStatementParser.ColLableContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.colLable().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBit
T visitBit(PostgreSQLStatementParser.BitContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.bit().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBitWithLength
T visitBitWithLength(PostgreSQLStatementParser.BitWithLengthContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.bitWithLength().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBitWithoutLength
T visitBitWithoutLength(PostgreSQLStatementParser.BitWithoutLengthContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.bitWithoutLength().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitConstInterval
T visitConstInterval(PostgreSQLStatementParser.ConstIntervalContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.constInterval().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOptInterval
T visitOptInterval(PostgreSQLStatementParser.OptIntervalContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.optInterval().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOptArrayBounds
T visitOptArrayBounds(PostgreSQLStatementParser.OptArrayBoundsContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.optArrayBounds().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIntervalSecond
T visitIntervalSecond(PostgreSQLStatementParser.IntervalSecondContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.intervalSecond().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUnicodeNormalForm
T visitUnicodeNormalForm(PostgreSQLStatementParser.UnicodeNormalFormContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.unicodeNormalForm().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTrimList
T visitTrimList(PostgreSQLStatementParser.TrimListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.trimList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOverlayList
T visitOverlayList(PostgreSQLStatementParser.OverlayListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.overlayList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOverlayPlacing
T visitOverlayPlacing(PostgreSQLStatementParser.OverlayPlacingContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.overlayPlacing().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSubstrFrom
T visitSubstrFrom(PostgreSQLStatementParser.SubstrFromContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.substrFrom().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSubstrFor
T visitSubstrFor(PostgreSQLStatementParser.SubstrForContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.substrFor().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPositionList
T visitPositionList(PostgreSQLStatementParser.PositionListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.positionList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSubstrList
T visitSubstrList(PostgreSQLStatementParser.SubstrListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.substrList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitXmlAttributes
T visitXmlAttributes(PostgreSQLStatementParser.XmlAttributesContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.xmlAttributes().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitXmlAttributeList
T visitXmlAttributeList(PostgreSQLStatementParser.XmlAttributeListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.xmlAttributeList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitXmlAttributeEl
T visitXmlAttributeEl(PostgreSQLStatementParser.XmlAttributeElContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.xmlAttributeEl().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitXmlExistsArgument
T visitXmlExistsArgument(PostgreSQLStatementParser.XmlExistsArgumentContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.xmlExistsArgument().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitXmlPassingMech
T visitXmlPassingMech(PostgreSQLStatementParser.XmlPassingMechContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.xmlPassingMech().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDocumentOrContent
T visitDocumentOrContent(PostgreSQLStatementParser.DocumentOrContentContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.documentOrContent().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitXmlWhitespaceOption
T visitXmlWhitespaceOption(PostgreSQLStatementParser.XmlWhitespaceOptionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.xmlWhitespaceOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitXmlRootVersion
T visitXmlRootVersion(PostgreSQLStatementParser.XmlRootVersionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.xmlRootVersion().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitXmlRootStandalone
T visitXmlRootStandalone(PostgreSQLStatementParser.XmlRootStandaloneContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.xmlRootStandalone().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRowsFromItem
T visitRowsFromItem(PostgreSQLStatementParser.RowsFromItemContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.rowsFromItem().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRowsFromList
T visitRowsFromList(PostgreSQLStatementParser.RowsFromListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.rowsFromList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitColumnDefList
T visitColumnDefList(PostgreSQLStatementParser.ColumnDefListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.columnDefList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableFuncElementList
T visitTableFuncElementList(PostgreSQLStatementParser.TableFuncElementListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.tableFuncElementList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableFuncElement
T visitTableFuncElement(PostgreSQLStatementParser.TableFuncElementContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.tableFuncElement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCollateClause
T visitCollateClause(PostgreSQLStatementParser.CollateClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.collateClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAnyName
T visitAnyName(PostgreSQLStatementParser.AnyNameContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.anyName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAliasClause
T visitAliasClause(PostgreSQLStatementParser.AliasClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.aliasClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNameList
T visitNameList(PostgreSQLStatementParser.NameListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.nameList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFuncAliasClause
T visitFuncAliasClause(PostgreSQLStatementParser.FuncAliasClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.funcAliasClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTablesampleClause
T visitTablesampleClause(PostgreSQLStatementParser.TablesampleClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.tablesampleClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRepeatableClause
T visitRepeatableClause(PostgreSQLStatementParser.RepeatableClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.repeatableClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAllOrDistinct
T visitAllOrDistinct(PostgreSQLStatementParser.AllOrDistinctContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.allOrDistinct().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSortClause
T visitSortClause(PostgreSQLStatementParser.SortClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.sortClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSortbyList
T visitSortbyList(PostgreSQLStatementParser.SortbyListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.sortbyList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSortby
T visitSortby(PostgreSQLStatementParser.SortbyContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.sortby().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNullsOrder
T visitNullsOrder(PostgreSQLStatementParser.NullsOrderContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.nullsOrder().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDistinctClause
T visitDistinctClause(PostgreSQLStatementParser.DistinctClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.distinctClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDistinct
T visitDistinct(PostgreSQLStatementParser.DistinctContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.distinct().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOverClause
T visitOverClause(PostgreSQLStatementParser.OverClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.overClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWindowName
T visitWindowName(PostgreSQLStatementParser.WindowNameContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.windowName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIndexParams
T visitIndexParams(PostgreSQLStatementParser.IndexParamsContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.indexParams().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIndexElemOptions
T visitIndexElemOptions(PostgreSQLStatementParser.IndexElemOptionsContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.indexElemOptions().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIndexElem
T visitIndexElem(PostgreSQLStatementParser.IndexElemContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.indexElem().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCollate
T visitCollate(PostgreSQLStatementParser.CollateContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.collate().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOptClass
T visitOptClass(PostgreSQLStatementParser.OptClassContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.optClass().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitReloptions
T visitReloptions(PostgreSQLStatementParser.ReloptionsContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.reloptions().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitReloptionList
T visitReloptionList(PostgreSQLStatementParser.ReloptionListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.reloptionList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitReloptionElem
T visitReloptionElem(PostgreSQLStatementParser.ReloptionElemContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.reloptionElem().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDefArg
T visitDefArg(PostgreSQLStatementParser.DefArgContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.defArg().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFuncType
T visitFuncType(PostgreSQLStatementParser.FuncTypeContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.funcType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDataType
T visitDataType(PostgreSQLStatementParser.DataTypeContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dataType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDataTypeName
T visitDataTypeName(PostgreSQLStatementParser.DataTypeNameContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dataTypeName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDataTypeLength
T visitDataTypeLength(PostgreSQLStatementParser.DataTypeLengthContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dataTypeLength().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCharacterSet
T visitCharacterSet(PostgreSQLStatementParser.CharacterSetContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.characterSet().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIgnoredIdentifier
T visitIgnoredIdentifier(PostgreSQLStatementParser.IgnoredIdentifierContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.ignoredIdentifier().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIgnoredIdentifiers
T visitIgnoredIdentifiers(PostgreSQLStatementParser.IgnoredIdentifiersContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.ignoredIdentifiers().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSignedIconst
T visitSignedIconst(PostgreSQLStatementParser.SignedIconstContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.signedIconst().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBooleanOrString
T visitBooleanOrString(PostgreSQLStatementParser.BooleanOrStringContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.booleanOrString().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNonReservedWord
T visitNonReservedWord(PostgreSQLStatementParser.NonReservedWordContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.nonReservedWord().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitColNameKeyword
T visitColNameKeyword(PostgreSQLStatementParser.ColNameKeywordContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.colNameKeyword().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDatabaseName
T visitDatabaseName(PostgreSQLStatementParser.DatabaseNameContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.databaseName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRoleSpec
T visitRoleSpec(PostgreSQLStatementParser.RoleSpecContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.roleSpec().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitVarName
T visitVarName(PostgreSQLStatementParser.VarNameContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.varName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitVarList
T visitVarList(PostgreSQLStatementParser.VarListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.varList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitVarValue
T visitVarValue(PostgreSQLStatementParser.VarValueContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.varValue().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitZoneValue
T visitZoneValue(PostgreSQLStatementParser.ZoneValueContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.zoneValue().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNumericOnly
T visitNumericOnly(PostgreSQLStatementParser.NumericOnlyContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.numericOnly().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIsoLevel
T visitIsoLevel(PostgreSQLStatementParser.IsoLevelContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.isoLevel().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitColumnDef
T visitColumnDef(PostgreSQLStatementParser.ColumnDefContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.columnDef().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitColQualList
T visitColQualList(PostgreSQLStatementParser.ColQualListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.colQualList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitColConstraint
T visitColConstraint(PostgreSQLStatementParser.ColConstraintContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.colConstraint().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitConstraintAttr
T visitConstraintAttr(PostgreSQLStatementParser.ConstraintAttrContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.constraintAttr().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitColConstraintElem
T visitColConstraintElem(PostgreSQLStatementParser.ColConstraintElemContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.colConstraintElem().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitParenthesizedSeqOptList
T visitParenthesizedSeqOptList(PostgreSQLStatementParser.ParenthesizedSeqOptListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.parenthesizedSeqOptList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSeqOptList
T visitSeqOptList(PostgreSQLStatementParser.SeqOptListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.seqOptList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSeqOptElem
T visitSeqOptElem(PostgreSQLStatementParser.SeqOptElemContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.seqOptElem().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOptColumnList
T visitOptColumnList(PostgreSQLStatementParser.OptColumnListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.optColumnList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitColumnElem
T visitColumnElem(PostgreSQLStatementParser.ColumnElemContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.columnElem().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitColumnList
T visitColumnList(PostgreSQLStatementParser.ColumnListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.columnList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGeneratedWhen
T visitGeneratedWhen(PostgreSQLStatementParser.GeneratedWhenContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.generatedWhen().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNoInherit
T visitNoInherit(PostgreSQLStatementParser.NoInheritContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.noInherit().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitConsTableSpace
T visitConsTableSpace(PostgreSQLStatementParser.ConsTableSpaceContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.consTableSpace().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDefinition
T visitDefinition(PostgreSQLStatementParser.DefinitionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.definition().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDefList
T visitDefList(PostgreSQLStatementParser.DefListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.defList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDefElem
T visitDefElem(PostgreSQLStatementParser.DefElemContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.defElem().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitColLabel
T visitColLabel(PostgreSQLStatementParser.ColLabelContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.colLabel().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitKeyActions
T visitKeyActions(PostgreSQLStatementParser.KeyActionsContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.keyActions().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitKeyDelete
T visitKeyDelete(PostgreSQLStatementParser.KeyDeleteContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.keyDelete().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitKeyUpdate
T visitKeyUpdate(PostgreSQLStatementParser.KeyUpdateContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.keyUpdate().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitKeyAction
T visitKeyAction(PostgreSQLStatementParser.KeyActionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.keyAction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitKeyMatch
T visitKeyMatch(PostgreSQLStatementParser.KeyMatchContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.keyMatch().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateGenericOptions
T visitCreateGenericOptions(PostgreSQLStatementParser.CreateGenericOptionsContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createGenericOptions().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGenericOptionList
T visitGenericOptionList(PostgreSQLStatementParser.GenericOptionListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.genericOptionList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGenericOptionElem
T visitGenericOptionElem(PostgreSQLStatementParser.GenericOptionElemContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.genericOptionElem().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGenericOptionArg
T visitGenericOptionArg(PostgreSQLStatementParser.GenericOptionArgContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.genericOptionArg().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGenericOptionName
T visitGenericOptionName(PostgreSQLStatementParser.GenericOptionNameContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.genericOptionName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitReplicaIdentity
T visitReplicaIdentity(PostgreSQLStatementParser.ReplicaIdentityContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.replicaIdentity().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOperArgtypes
T visitOperArgtypes(PostgreSQLStatementParser.OperArgtypesContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.operArgtypes().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFuncArg
T visitFuncArg(PostgreSQLStatementParser.FuncArgContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.funcArg().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitArgClass
T visitArgClass(PostgreSQLStatementParser.ArgClassContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.argClass().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFuncArgsList
T visitFuncArgsList(PostgreSQLStatementParser.FuncArgsListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.funcArgsList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNonReservedWordOrSconst
T visitNonReservedWordOrSconst(PostgreSQLStatementParser.NonReservedWordOrSconstContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.nonReservedWordOrSconst().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFileName
T visitFileName(PostgreSQLStatementParser.FileNameContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.fileName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRoleList
T visitRoleList(PostgreSQLStatementParser.RoleListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.roleList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSetResetClause
T visitSetResetClause(PostgreSQLStatementParser.SetResetClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.setResetClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSetRest
T visitSetRest(PostgreSQLStatementParser.SetRestContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.setRest().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTransactionModeList
T visitTransactionModeList(PostgreSQLStatementParser.TransactionModeListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.transactionModeList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTransactionModeItem
T visitTransactionModeItem(PostgreSQLStatementParser.TransactionModeItemContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.transactionModeItem().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSetRestMore
T visitSetRestMore(PostgreSQLStatementParser.SetRestMoreContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.setRestMore().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEncoding
T visitEncoding(PostgreSQLStatementParser.EncodingContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.encoding().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGenericSet
T visitGenericSet(PostgreSQLStatementParser.GenericSetContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.genericSet().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitVariableResetStmt
T visitVariableResetStmt(PostgreSQLStatementParser.VariableResetStmtContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.variableResetStmt().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitResetRest
T visitResetRest(PostgreSQLStatementParser.ResetRestContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.resetRest().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGenericReset
T visitGenericReset(PostgreSQLStatementParser.GenericResetContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.genericReset().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRelationExprList
T visitRelationExprList(PostgreSQLStatementParser.RelationExprListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.relationExprList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCommonFuncOptItem
T visitCommonFuncOptItem(PostgreSQLStatementParser.CommonFuncOptItemContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.commonFuncOptItem().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFunctionSetResetClause
T visitFunctionSetResetClause(PostgreSQLStatementParser.FunctionSetResetClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.functionSetResetClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRowSecurityCmd
T visitRowSecurityCmd(PostgreSQLStatementParser.RowSecurityCmdContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.rowSecurityCmd().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEvent
T visitEvent(PostgreSQLStatementParser.EventContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.event().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTypeNameList
T visitTypeNameList(PostgreSQLStatementParser.TypeNameListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.typeNameList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIfNotExists
T visitIfNotExists(PostgreSQLStatementParser.IfNotExistsContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.ifNotExists().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIfExists
T visitIfExists(PostgreSQLStatementParser.IfExistsContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.ifExists().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBooleanValue
T visitBooleanValue(PostgreSQLStatementParser.BooleanValueContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.booleanValue().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGrant
T visitGrant(PostgreSQLStatementParser.GrantContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.grant().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRevoke
T visitRevoke(PostgreSQLStatementParser.RevokeContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.revoke().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOptionForClause
T visitOptionForClause(PostgreSQLStatementParser.OptionForClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.optionForClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateUser
T visitCreateUser(PostgreSQLStatementParser.CreateUserContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createUser().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateOptRoleElem
T visitCreateOptRoleElem(PostgreSQLStatementParser.CreateOptRoleElemContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createOptRoleElem().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterOptRoleElem
T visitAlterOptRoleElem(PostgreSQLStatementParser.AlterOptRoleElemContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterOptRoleElem().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropUser
T visitDropUser(PostgreSQLStatementParser.DropUserContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropUser().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterUser
T visitAlterUser(PostgreSQLStatementParser.AlterUserContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterUser().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterUserClauses
T visitAlterUserClauses(PostgreSQLStatementParser.AlterUserClausesContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterUserClauses().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterOptRoleList
T visitAlterOptRoleList(PostgreSQLStatementParser.AlterOptRoleListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterOptRoleList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateRole
T visitCreateRole(PostgreSQLStatementParser.CreateRoleContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createRole().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropRole
T visitDropRole(PostgreSQLStatementParser.DropRoleContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropRole().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterRole
T visitAlterRole(PostgreSQLStatementParser.AlterRoleContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterRole().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateGroup
T visitCreateGroup(PostgreSQLStatementParser.CreateGroupContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createGroup().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitReassignOwned
T visitReassignOwned(PostgreSQLStatementParser.ReassignOwnedContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.reassignOwned().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropDroup
T visitDropDroup(PostgreSQLStatementParser.DropDroupContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropDroup().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateTable
T visitCreateTable(PostgreSQLStatementParser.CreateTableContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createTable().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExecuteParamClause
T visitExecuteParamClause(PostgreSQLStatementParser.ExecuteParamClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.executeParamClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPartitionBoundSpec
T visitPartitionBoundSpec(PostgreSQLStatementParser.PartitionBoundSpecContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.partitionBoundSpec().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitHashPartbound
T visitHashPartbound(PostgreSQLStatementParser.HashPartboundContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.hashPartbound().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitHashPartboundElem
T visitHashPartboundElem(PostgreSQLStatementParser.HashPartboundElemContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.hashPartboundElem().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTypedTableElementList
T visitTypedTableElementList(PostgreSQLStatementParser.TypedTableElementListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.typedTableElementList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTypedTableElement
T visitTypedTableElement(PostgreSQLStatementParser.TypedTableElementContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.typedTableElement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitColumnOptions
T visitColumnOptions(PostgreSQLStatementParser.ColumnOptionsContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.columnOptions().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWithData
T visitWithData(PostgreSQLStatementParser.WithDataContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.withData().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableSpace
T visitTableSpace(PostgreSQLStatementParser.TableSpaceContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.tableSpace().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOnCommitOption
T visitOnCommitOption(PostgreSQLStatementParser.OnCommitOptionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.onCommitOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWithOption
T visitWithOption(PostgreSQLStatementParser.WithOptionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.withOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableAccessMethodClause
T visitTableAccessMethodClause(PostgreSQLStatementParser.TableAccessMethodClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.tableAccessMethodClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAccessMethod
T visitAccessMethod(PostgreSQLStatementParser.AccessMethodContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.accessMethod().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateIndex
T visitCreateIndex(PostgreSQLStatementParser.CreateIndexContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createIndex().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInclude
T visitInclude(PostgreSQLStatementParser.IncludeContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.include().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIndexIncludingParams
T visitIndexIncludingParams(PostgreSQLStatementParser.IndexIncludingParamsContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.indexIncludingParams().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAccessMethodClause
T visitAccessMethodClause(PostgreSQLStatementParser.AccessMethodClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.accessMethodClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateDatabase
T visitCreateDatabase(PostgreSQLStatementParser.CreateDatabaseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createDatabase().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateView
T visitCreateView(PostgreSQLStatementParser.CreateViewContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createView().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropDatabase
T visitDropDatabase(PostgreSQLStatementParser.DropDatabaseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropDatabase().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropGroup
T visitDropGroup(PostgreSQLStatementParser.DropGroupContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropGroup().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateDatabaseSpecification
T visitCreateDatabaseSpecification(PostgreSQLStatementParser.CreateDatabaseSpecificationContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createDatabaseSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreatedbOptName
T visitCreatedbOptName(PostgreSQLStatementParser.CreatedbOptNameContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createdbOptName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterTable
T visitAlterTable(PostgreSQLStatementParser.AlterTableContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterTable().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterIndex
T visitAlterIndex(PostgreSQLStatementParser.AlterIndexContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterIndex().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropTable
T visitDropTable(PostgreSQLStatementParser.DropTableContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropTable().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropTableOpt
T visitDropTableOpt(PostgreSQLStatementParser.DropTableOptContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropTableOpt().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropIndex
T visitDropIndex(PostgreSQLStatementParser.DropIndexContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropIndex().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropIndexOpt
T visitDropIndexOpt(PostgreSQLStatementParser.DropIndexOptContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropIndexOpt().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTruncateTable
T visitTruncateTable(PostgreSQLStatementParser.TruncateTableContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.truncateTable().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRestartSeqs
T visitRestartSeqs(PostgreSQLStatementParser.RestartSeqsContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.restartSeqs().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateTableSpecification
T visitCreateTableSpecification(PostgreSQLStatementParser.CreateTableSpecificationContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createTableSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateDefinitionClause
T visitCreateDefinitionClause(PostgreSQLStatementParser.CreateDefinitionClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createDefinitionClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateDefinition
T visitCreateDefinition(PostgreSQLStatementParser.CreateDefinitionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createDefinition().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitColumnDefinition
T visitColumnDefinition(PostgreSQLStatementParser.ColumnDefinitionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.columnDefinition().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitColumnConstraint
T visitColumnConstraint(PostgreSQLStatementParser.ColumnConstraintContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.columnConstraint().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitConstraintClause
T visitConstraintClause(PostgreSQLStatementParser.ConstraintClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.constraintClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitColumnConstraintOption
T visitColumnConstraintOption(PostgreSQLStatementParser.ColumnConstraintOptionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.columnConstraintOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCheckOption
T visitCheckOption(PostgreSQLStatementParser.CheckOptionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.checkOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDefaultExpr
T visitDefaultExpr(PostgreSQLStatementParser.DefaultExprContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.defaultExpr().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSequenceOptions
T visitSequenceOptions(PostgreSQLStatementParser.SequenceOptionsContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.sequenceOptions().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSequenceOption
T visitSequenceOption(PostgreSQLStatementParser.SequenceOptionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.sequenceOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIndexParameters
T visitIndexParameters(PostgreSQLStatementParser.IndexParametersContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.indexParameters().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAction
T visitAction(PostgreSQLStatementParser.ActionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.action().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitConstraintOptionalParam
T visitConstraintOptionalParam(PostgreSQLStatementParser.ConstraintOptionalParamContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.constraintOptionalParam().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLikeOption
T visitLikeOption(PostgreSQLStatementParser.LikeOptionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.likeOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableConstraint
T visitTableConstraint(PostgreSQLStatementParser.TableConstraintContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.tableConstraint().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableConstraintOption
T visitTableConstraintOption(PostgreSQLStatementParser.TableConstraintOptionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.tableConstraintOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExclusionWhereClause
T visitExclusionWhereClause(PostgreSQLStatementParser.ExclusionWhereClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.exclusionWhereClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExclusionConstraintList
T visitExclusionConstraintList(PostgreSQLStatementParser.ExclusionConstraintListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.exclusionConstraintList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExclusionConstraintElem
T visitExclusionConstraintElem(PostgreSQLStatementParser.ExclusionConstraintElemContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.exclusionConstraintElem().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInheritClause
T visitInheritClause(PostgreSQLStatementParser.InheritClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.inheritClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPartitionSpec
T visitPartitionSpec(PostgreSQLStatementParser.PartitionSpecContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.partitionSpec().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPartParams
T visitPartParams(PostgreSQLStatementParser.PartParamsContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.partParams().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPartElem
T visitPartElem(PostgreSQLStatementParser.PartElemContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.partElem().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFuncExprWindowless
T visitFuncExprWindowless(PostgreSQLStatementParser.FuncExprWindowlessContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.funcExprWindowless().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPartStrategy
T visitPartStrategy(PostgreSQLStatementParser.PartStrategyContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.partStrategy().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateIndexSpecification
T visitCreateIndexSpecification(PostgreSQLStatementParser.CreateIndexSpecificationContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createIndexSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitConcurrentlyClause
T visitConcurrentlyClause(PostgreSQLStatementParser.ConcurrentlyClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.concurrentlyClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOnlyClause
T visitOnlyClause(PostgreSQLStatementParser.OnlyClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.onlyClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAsteriskClause
T visitAsteriskClause(PostgreSQLStatementParser.AsteriskClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.asteriskClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterDefinitionClause
T visitAlterDefinitionClause(PostgreSQLStatementParser.AlterDefinitionClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterDefinitionClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPartitionCmd
T visitPartitionCmd(PostgreSQLStatementParser.PartitionCmdContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.partitionCmd().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterIndexDefinitionClause
T visitAlterIndexDefinitionClause(PostgreSQLStatementParser.AlterIndexDefinitionClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterIndexDefinitionClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIndexPartitionCmd
T visitIndexPartitionCmd(PostgreSQLStatementParser.IndexPartitionCmdContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.indexPartitionCmd().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRenameIndexSpecification
T visitRenameIndexSpecification(PostgreSQLStatementParser.RenameIndexSpecificationContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.renameIndexSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterIndexDependsOnExtension
T visitAlterIndexDependsOnExtension(PostgreSQLStatementParser.AlterIndexDependsOnExtensionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterIndexDependsOnExtension().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterIndexSetTableSpace
T visitAlterIndexSetTableSpace(PostgreSQLStatementParser.AlterIndexSetTableSpaceContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterIndexSetTableSpace().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableNamesClause
T visitTableNamesClause(PostgreSQLStatementParser.TableNamesClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.tableNamesClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableNameClause
T visitTableNameClause(PostgreSQLStatementParser.TableNameClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.tableNameClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterTableActions
T visitAlterTableActions(PostgreSQLStatementParser.AlterTableActionsContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterTableActions().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterTableAction
T visitAlterTableAction(PostgreSQLStatementParser.AlterTableActionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterTableAction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAddColumnSpecification
T visitAddColumnSpecification(PostgreSQLStatementParser.AddColumnSpecificationContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.addColumnSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropColumnSpecification
T visitDropColumnSpecification(PostgreSQLStatementParser.DropColumnSpecificationContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropColumnSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitModifyColumnSpecification
T visitModifyColumnSpecification(PostgreSQLStatementParser.ModifyColumnSpecificationContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.modifyColumnSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitModifyColumn
T visitModifyColumn(PostgreSQLStatementParser.ModifyColumnContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.modifyColumn().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterColumnSetOption
T visitAlterColumnSetOption(PostgreSQLStatementParser.AlterColumnSetOptionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterColumnSetOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAttributeOptions
T visitAttributeOptions(PostgreSQLStatementParser.AttributeOptionsContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.attributeOptions().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAttributeOption
T visitAttributeOption(PostgreSQLStatementParser.AttributeOptionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.attributeOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAddConstraintSpecification
T visitAddConstraintSpecification(PostgreSQLStatementParser.AddConstraintSpecificationContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.addConstraintSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableConstraintUsingIndex
T visitTableConstraintUsingIndex(PostgreSQLStatementParser.TableConstraintUsingIndexContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.tableConstraintUsingIndex().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitModifyConstraintSpecification
T visitModifyConstraintSpecification(PostgreSQLStatementParser.ModifyConstraintSpecificationContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.modifyConstraintSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitValidateConstraintSpecification
T visitValidateConstraintSpecification(PostgreSQLStatementParser.ValidateConstraintSpecificationContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.validateConstraintSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropConstraintSpecification
T visitDropConstraintSpecification(PostgreSQLStatementParser.DropConstraintSpecificationContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropConstraintSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitStorageParameterWithValue
T visitStorageParameterWithValue(PostgreSQLStatementParser.StorageParameterWithValueContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.storageParameterWithValue().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitStorageParameter
T visitStorageParameter(PostgreSQLStatementParser.StorageParameterContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.storageParameter().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRenameColumnSpecification
T visitRenameColumnSpecification(PostgreSQLStatementParser.RenameColumnSpecificationContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.renameColumnSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRenameConstraint
T visitRenameConstraint(PostgreSQLStatementParser.RenameConstraintContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.renameConstraint().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRenameTableSpecification
T visitRenameTableSpecification(PostgreSQLStatementParser.RenameTableSpecificationContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.renameTableSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIndexNames
T visitIndexNames(PostgreSQLStatementParser.IndexNamesContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.indexNames().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterDatabase
T visitAlterDatabase(PostgreSQLStatementParser.AlterDatabaseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterDatabase().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterDatabaseClause
T visitAlterDatabaseClause(PostgreSQLStatementParser.AlterDatabaseClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterDatabaseClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreatedbOptItems
T visitCreatedbOptItems(PostgreSQLStatementParser.CreatedbOptItemsContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createdbOptItems().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreatedbOptItem
T visitCreatedbOptItem(PostgreSQLStatementParser.CreatedbOptItemContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createdbOptItem().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterTableCmds
T visitAlterTableCmds(PostgreSQLStatementParser.AlterTableCmdsContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterTableCmds().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterTableCmd
T visitAlterTableCmd(PostgreSQLStatementParser.AlterTableCmdContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterTableCmd().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitColumnCompression
T visitColumnCompression(PostgreSQLStatementParser.ColumnCompressionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.columnCompression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitConstraintAttributeSpec
T visitConstraintAttributeSpec(PostgreSQLStatementParser.ConstraintAttributeSpecContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.constraintAttributeSpec().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitConstraintAttributeElem
T visitConstraintAttributeElem(PostgreSQLStatementParser.ConstraintAttributeElemContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.constraintAttributeElem().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterGenericOptions
T visitAlterGenericOptions(PostgreSQLStatementParser.AlterGenericOptionsContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterGenericOptions().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterGenericOptionList
T visitAlterGenericOptionList(PostgreSQLStatementParser.AlterGenericOptionListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterGenericOptionList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterGenericOptionElem
T visitAlterGenericOptionElem(PostgreSQLStatementParser.AlterGenericOptionElemContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterGenericOptionElem().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropBehavior
T visitDropBehavior(PostgreSQLStatementParser.DropBehaviorContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropBehavior().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterUsing
T visitAlterUsing(PostgreSQLStatementParser.AlterUsingContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterUsing().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSetData
T visitSetData(PostgreSQLStatementParser.SetDataContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.setData().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterIdentityColumnOptionList
T visitAlterIdentityColumnOptionList(PostgreSQLStatementParser.AlterIdentityColumnOptionListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterIdentityColumnOptionList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterIdentityColumnOption
T visitAlterIdentityColumnOption(PostgreSQLStatementParser.AlterIdentityColumnOptionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterIdentityColumnOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterColumnDefault
T visitAlterColumnDefault(PostgreSQLStatementParser.AlterColumnDefaultContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterColumnDefault().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterOperator
T visitAlterOperator(PostgreSQLStatementParser.AlterOperatorContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterOperator().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterOperatorClass
T visitAlterOperatorClass(PostgreSQLStatementParser.AlterOperatorClassContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterOperatorClass().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterOperatorClassClauses
T visitAlterOperatorClassClauses(PostgreSQLStatementParser.AlterOperatorClassClausesContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterOperatorClassClauses().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterOperatorFamily
T visitAlterOperatorFamily(PostgreSQLStatementParser.AlterOperatorFamilyContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterOperatorFamily().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterOperatorFamilyClauses
T visitAlterOperatorFamilyClauses(PostgreSQLStatementParser.AlterOperatorFamilyClausesContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterOperatorFamilyClauses().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOpclassItemList
T visitOpclassItemList(PostgreSQLStatementParser.OpclassItemListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.opclassItemList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOpclassItem
T visitOpclassItem(PostgreSQLStatementParser.OpclassItemContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.opclassItem().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOpclassPurpose
T visitOpclassPurpose(PostgreSQLStatementParser.OpclassPurposeContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.opclassPurpose().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterOperatorClauses
T visitAlterOperatorClauses(PostgreSQLStatementParser.AlterOperatorClausesContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterOperatorClauses().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOperatorDefList
T visitOperatorDefList(PostgreSQLStatementParser.OperatorDefListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.operatorDefList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOperatorDefElem
T visitOperatorDefElem(PostgreSQLStatementParser.OperatorDefElemContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.operatorDefElem().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOperatorDefArg
T visitOperatorDefArg(PostgreSQLStatementParser.OperatorDefArgContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.operatorDefArg().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOperatorWithArgtypes
T visitOperatorWithArgtypes(PostgreSQLStatementParser.OperatorWithArgtypesContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.operatorWithArgtypes().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterAggregate
T visitAlterAggregate(PostgreSQLStatementParser.AlterAggregateContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterAggregate().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAggregateSignature
T visitAggregateSignature(PostgreSQLStatementParser.AggregateSignatureContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.aggregateSignature().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAggrArgs
T visitAggrArgs(PostgreSQLStatementParser.AggrArgsContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.aggrArgs().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAggrArgsList
T visitAggrArgsList(PostgreSQLStatementParser.AggrArgsListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.aggrArgsList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAggrArg
T visitAggrArg(PostgreSQLStatementParser.AggrArgContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.aggrArg().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterAggregateDefinitionClause
T visitAlterAggregateDefinitionClause(PostgreSQLStatementParser.AlterAggregateDefinitionClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterAggregateDefinitionClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterCollation
T visitAlterCollation(PostgreSQLStatementParser.AlterCollationContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterCollation().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterCollationClause
T visitAlterCollationClause(PostgreSQLStatementParser.AlterCollationClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterCollationClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterConversion
T visitAlterConversion(PostgreSQLStatementParser.AlterConversionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterConversion().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterConversionClause
T visitAlterConversionClause(PostgreSQLStatementParser.AlterConversionClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterConversionClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterDefaultPrivileges
T visitAlterDefaultPrivileges(PostgreSQLStatementParser.AlterDefaultPrivilegesContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterDefaultPrivileges().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDefACLAction
T visitDefACLAction(PostgreSQLStatementParser.DefACLActionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.defACLAction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGrantGrantOption
T visitGrantGrantOption(PostgreSQLStatementParser.GrantGrantOptionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.grantGrantOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGranteeList
T visitGranteeList(PostgreSQLStatementParser.GranteeListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.granteeList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGrantee
T visitGrantee(PostgreSQLStatementParser.GranteeContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.grantee().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDefaclPrivilegeTarget
T visitDefaclPrivilegeTarget(PostgreSQLStatementParser.DefaclPrivilegeTargetContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.defaclPrivilegeTarget().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPrivileges
T visitPrivileges(PostgreSQLStatementParser.PrivilegesContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.privileges().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPrivilegeList
T visitPrivilegeList(PostgreSQLStatementParser.PrivilegeListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.privilegeList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPrivilege
T visitPrivilege(PostgreSQLStatementParser.PrivilegeContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.privilege().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDefACLOptionList
T visitDefACLOptionList(PostgreSQLStatementParser.DefACLOptionListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.defACLOptionList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDefACLOption
T visitDefACLOption(PostgreSQLStatementParser.DefACLOptionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.defACLOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSchemaNameList
T visitSchemaNameList(PostgreSQLStatementParser.SchemaNameListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.schemaNameList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterDomain
T visitAlterDomain(PostgreSQLStatementParser.AlterDomainContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterDomain().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterDomainClause
T visitAlterDomainClause(PostgreSQLStatementParser.AlterDomainClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterDomainClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterEventTrigger
T visitAlterEventTrigger(PostgreSQLStatementParser.AlterEventTriggerContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterEventTrigger().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterEventTriggerClause
T visitAlterEventTriggerClause(PostgreSQLStatementParser.AlterEventTriggerClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterEventTriggerClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTiggerName
T visitTiggerName(PostgreSQLStatementParser.TiggerNameContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.tiggerName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterExtension
T visitAlterExtension(PostgreSQLStatementParser.AlterExtensionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterExtension().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterExtensionClauses
T visitAlterExtensionClauses(PostgreSQLStatementParser.AlterExtensionClausesContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterExtensionClauses().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFunctionWithArgtypes
T visitFunctionWithArgtypes(PostgreSQLStatementParser.FunctionWithArgtypesContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.functionWithArgtypes().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFuncArgs
T visitFuncArgs(PostgreSQLStatementParser.FuncArgsContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.funcArgs().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAggregateWithArgtypes
T visitAggregateWithArgtypes(PostgreSQLStatementParser.AggregateWithArgtypesContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.aggregateWithArgtypes().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterExtensionOptList
T visitAlterExtensionOptList(PostgreSQLStatementParser.AlterExtensionOptListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterExtensionOptList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterExtensionOptItem
T visitAlterExtensionOptItem(PostgreSQLStatementParser.AlterExtensionOptItemContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterExtensionOptItem().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterForeignDataWrapper
T visitAlterForeignDataWrapper(PostgreSQLStatementParser.AlterForeignDataWrapperContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterForeignDataWrapper().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterForeignDataWrapperClauses
T visitAlterForeignDataWrapperClauses(PostgreSQLStatementParser.AlterForeignDataWrapperClausesContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterForeignDataWrapperClauses().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFdwOptions
T visitFdwOptions(PostgreSQLStatementParser.FdwOptionsContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.fdwOptions().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFdwOption
T visitFdwOption(PostgreSQLStatementParser.FdwOptionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.fdwOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitHandlerName
T visitHandlerName(PostgreSQLStatementParser.HandlerNameContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.handlerName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterGroup
T visitAlterGroup(PostgreSQLStatementParser.AlterGroupContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterGroup().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterGroupClauses
T visitAlterGroupClauses(PostgreSQLStatementParser.AlterGroupClausesContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterGroupClauses().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterLanguage
T visitAlterLanguage(PostgreSQLStatementParser.AlterLanguageContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterLanguage().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterLargeObject
T visitAlterLargeObject(PostgreSQLStatementParser.AlterLargeObjectContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterLargeObject().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterMaterializedView
T visitAlterMaterializedView(PostgreSQLStatementParser.AlterMaterializedViewContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterMaterializedView().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterMaterializedViewClauses
T visitAlterMaterializedViewClauses(PostgreSQLStatementParser.AlterMaterializedViewClausesContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterMaterializedViewClauses().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExecuteStmt
T visitExecuteStmt(PostgreSQLStatementParser.ExecuteStmtContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.executeStmt().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateMaterializedView
T visitCreateMaterializedView(PostgreSQLStatementParser.CreateMaterializedViewContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createMaterializedView().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateMvTarget
T visitCreateMvTarget(PostgreSQLStatementParser.CreateMvTargetContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createMvTarget().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterPolicy
T visitAlterPolicy(PostgreSQLStatementParser.AlterPolicyContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterPolicy().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterPolicyClauses
T visitAlterPolicyClauses(PostgreSQLStatementParser.AlterPolicyClausesContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterPolicyClauses().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRefreshMatViewStmt
T visitRefreshMatViewStmt(PostgreSQLStatementParser.RefreshMatViewStmtContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.refreshMatViewStmt().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterProcedure
T visitAlterProcedure(PostgreSQLStatementParser.AlterProcedureContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterProcedure().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterProcedureClauses
T visitAlterProcedureClauses(PostgreSQLStatementParser.AlterProcedureClausesContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterProcedureClauses().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterfuncOptList
T visitAlterfuncOptList(PostgreSQLStatementParser.AlterfuncOptListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterfuncOptList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterFunction
T visitAlterFunction(PostgreSQLStatementParser.AlterFunctionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterFunction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterFunctionClauses
T visitAlterFunctionClauses(PostgreSQLStatementParser.AlterFunctionClausesContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterFunctionClauses().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterPublication
T visitAlterPublication(PostgreSQLStatementParser.AlterPublicationContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterPublication().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterRoutine
T visitAlterRoutine(PostgreSQLStatementParser.AlterRoutineContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterRoutine().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterRule
T visitAlterRule(PostgreSQLStatementParser.AlterRuleContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterRule().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterSequence
T visitAlterSequence(PostgreSQLStatementParser.AlterSequenceContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterSequence().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterSequenceClauses
T visitAlterSequenceClauses(PostgreSQLStatementParser.AlterSequenceClausesContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterSequenceClauses().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterServer
T visitAlterServer(PostgreSQLStatementParser.AlterServerContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterServer().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitForeignServerVersion
T visitForeignServerVersion(PostgreSQLStatementParser.ForeignServerVersionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.foreignServerVersion().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterStatistics
T visitAlterStatistics(PostgreSQLStatementParser.AlterStatisticsContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterStatistics().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterSubscription
T visitAlterSubscription(PostgreSQLStatementParser.AlterSubscriptionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterSubscription().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPublicationNameList
T visitPublicationNameList(PostgreSQLStatementParser.PublicationNameListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.publicationNameList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPublicationNameItem
T visitPublicationNameItem(PostgreSQLStatementParser.PublicationNameItemContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.publicationNameItem().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterSystem
T visitAlterSystem(PostgreSQLStatementParser.AlterSystemContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterSystem().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterTablespace
T visitAlterTablespace(PostgreSQLStatementParser.AlterTablespaceContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterTablespace().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterTextSearchConfiguration
T visitAlterTextSearchConfiguration(PostgreSQLStatementParser.AlterTextSearchConfigurationContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterTextSearchConfiguration().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterTextSearchConfigurationClauses
T visitAlterTextSearchConfigurationClauses(PostgreSQLStatementParser.AlterTextSearchConfigurationClausesContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterTextSearchConfigurationClauses().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAnyNameList
T visitAnyNameList(PostgreSQLStatementParser.AnyNameListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.anyNameList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterTextSearchDictionary
T visitAlterTextSearchDictionary(PostgreSQLStatementParser.AlterTextSearchDictionaryContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterTextSearchDictionary().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterTextSearchParser
T visitAlterTextSearchParser(PostgreSQLStatementParser.AlterTextSearchParserContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterTextSearchParser().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterTextSearchTemplate
T visitAlterTextSearchTemplate(PostgreSQLStatementParser.AlterTextSearchTemplateContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterTextSearchTemplate().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterTrigger
T visitAlterTrigger(PostgreSQLStatementParser.AlterTriggerContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterTrigger().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterType
T visitAlterType(PostgreSQLStatementParser.AlterTypeContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterTypeClauses
T visitAlterTypeClauses(PostgreSQLStatementParser.AlterTypeClausesContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterTypeClauses().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterTypeCmds
T visitAlterTypeCmds(PostgreSQLStatementParser.AlterTypeCmdsContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterTypeCmds().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterTypeCmd
T visitAlterTypeCmd(PostgreSQLStatementParser.AlterTypeCmdContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterTypeCmd().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterUserMapping
T visitAlterUserMapping(PostgreSQLStatementParser.AlterUserMappingContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterUserMapping().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAuthIdent
T visitAuthIdent(PostgreSQLStatementParser.AuthIdentContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.authIdent().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterView
T visitAlterView(PostgreSQLStatementParser.AlterViewContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterView().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterViewCmds
T visitAlterViewCmds(PostgreSQLStatementParser.AlterViewCmdsContext ctx)
Visit a parse tree produced by thealterViewCmdslabeled alternative inPostgreSQLStatementParser.alterViewClauses().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterRenameView
T visitAlterRenameView(PostgreSQLStatementParser.AlterRenameViewContext ctx)
Visit a parse tree produced by thealterRenameViewlabeled alternative inPostgreSQLStatementParser.alterViewClauses().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterRenameColumn
T visitAlterRenameColumn(PostgreSQLStatementParser.AlterRenameColumnContext ctx)
Visit a parse tree produced by thealterRenameColumnlabeled alternative inPostgreSQLStatementParser.alterViewClauses().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterSetSchema
T visitAlterSetSchema(PostgreSQLStatementParser.AlterSetSchemaContext ctx)
Visit a parse tree produced by thealterSetSchemalabeled alternative inPostgreSQLStatementParser.alterViewClauses().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitClose
T visitClose(PostgreSQLStatementParser.CloseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.close().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCluster
T visitCluster(PostgreSQLStatementParser.ClusterContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.cluster().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitClusterVerboseSpecification
T visitClusterVerboseSpecification(PostgreSQLStatementParser.ClusterVerboseSpecificationContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.clusterVerboseSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitClusterIndexSpecification
T visitClusterIndexSpecification(PostgreSQLStatementParser.ClusterIndexSpecificationContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.clusterIndexSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitClusterVerboseOptionList
T visitClusterVerboseOptionList(PostgreSQLStatementParser.ClusterVerboseOptionListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.clusterVerboseOptionList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitClusterVerboseOption
T visitClusterVerboseOption(PostgreSQLStatementParser.ClusterVerboseOptionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.clusterVerboseOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitComment
T visitComment(PostgreSQLStatementParser.CommentContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.comment().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCommentClauses
T visitCommentClauses(PostgreSQLStatementParser.CommentClausesContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.commentClauses().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitObjectTypeNameOnAnyName
T visitObjectTypeNameOnAnyName(PostgreSQLStatementParser.ObjectTypeNameOnAnyNameContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.objectTypeNameOnAnyName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitObjectTypeName
T visitObjectTypeName(PostgreSQLStatementParser.ObjectTypeNameContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.objectTypeName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropTypeName
T visitDropTypeName(PostgreSQLStatementParser.DropTypeNameContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropTypeName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitObjectTypeAnyName
T visitObjectTypeAnyName(PostgreSQLStatementParser.ObjectTypeAnyNameContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.objectTypeAnyName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCommentText
T visitCommentText(PostgreSQLStatementParser.CommentTextContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.commentText().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateAccessMethod
T visitCreateAccessMethod(PostgreSQLStatementParser.CreateAccessMethodContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createAccessMethod().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateAggregate
T visitCreateAggregate(PostgreSQLStatementParser.CreateAggregateContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createAggregate().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOldAggrDefinition
T visitOldAggrDefinition(PostgreSQLStatementParser.OldAggrDefinitionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.oldAggrDefinition().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOldAggrList
T visitOldAggrList(PostgreSQLStatementParser.OldAggrListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.oldAggrList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOldAggrElem
T visitOldAggrElem(PostgreSQLStatementParser.OldAggrElemContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.oldAggrElem().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateCast
T visitCreateCast(PostgreSQLStatementParser.CreateCastContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createCast().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCastContext
T visitCastContext(PostgreSQLStatementParser.CastContextContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.castContext().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateCollation
T visitCreateCollation(PostgreSQLStatementParser.CreateCollationContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createCollation().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateConversion
T visitCreateConversion(PostgreSQLStatementParser.CreateConversionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createConversion().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateDomain
T visitCreateDomain(PostgreSQLStatementParser.CreateDomainContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createDomain().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateEventTrigger
T visitCreateEventTrigger(PostgreSQLStatementParser.CreateEventTriggerContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createEventTrigger().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEventTriggerWhenList
T visitEventTriggerWhenList(PostgreSQLStatementParser.EventTriggerWhenListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.eventTriggerWhenList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEventTriggerWhenItem
T visitEventTriggerWhenItem(PostgreSQLStatementParser.EventTriggerWhenItemContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.eventTriggerWhenItem().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEventTriggerValueList
T visitEventTriggerValueList(PostgreSQLStatementParser.EventTriggerValueListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.eventTriggerValueList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateExtension
T visitCreateExtension(PostgreSQLStatementParser.CreateExtensionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createExtension().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateExtensionOptList
T visitCreateExtensionOptList(PostgreSQLStatementParser.CreateExtensionOptListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createExtensionOptList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateExtensionOptItem
T visitCreateExtensionOptItem(PostgreSQLStatementParser.CreateExtensionOptItemContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createExtensionOptItem().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateForeignDataWrapper
T visitCreateForeignDataWrapper(PostgreSQLStatementParser.CreateForeignDataWrapperContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createForeignDataWrapper().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateForeignTable
T visitCreateForeignTable(PostgreSQLStatementParser.CreateForeignTableContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createForeignTable().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateForeignTableClauses
T visitCreateForeignTableClauses(PostgreSQLStatementParser.CreateForeignTableClausesContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createForeignTableClauses().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableElementList
T visitTableElementList(PostgreSQLStatementParser.TableElementListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.tableElementList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableElement
T visitTableElement(PostgreSQLStatementParser.TableElementContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.tableElement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableLikeClause
T visitTableLikeClause(PostgreSQLStatementParser.TableLikeClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.tableLikeClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableLikeOptionList
T visitTableLikeOptionList(PostgreSQLStatementParser.TableLikeOptionListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.tableLikeOptionList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableLikeOption
T visitTableLikeOption(PostgreSQLStatementParser.TableLikeOptionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.tableLikeOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateFunction
T visitCreateFunction(PostgreSQLStatementParser.CreateFunctionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createFunction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableFuncColumnList
T visitTableFuncColumnList(PostgreSQLStatementParser.TableFuncColumnListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.tableFuncColumnList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableFuncColumn
T visitTableFuncColumn(PostgreSQLStatementParser.TableFuncColumnContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.tableFuncColumn().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreatefuncOptList
T visitCreatefuncOptList(PostgreSQLStatementParser.CreatefuncOptListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createfuncOptList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreatefuncOptItem
T visitCreatefuncOptItem(PostgreSQLStatementParser.CreatefuncOptItemContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createfuncOptItem().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTransformTypeList
T visitTransformTypeList(PostgreSQLStatementParser.TransformTypeListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.transformTypeList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFuncAs
T visitFuncAs(PostgreSQLStatementParser.FuncAsContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.funcAs().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFuncReturn
T visitFuncReturn(PostgreSQLStatementParser.FuncReturnContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.funcReturn().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFuncArgsWithDefaults
T visitFuncArgsWithDefaults(PostgreSQLStatementParser.FuncArgsWithDefaultsContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.funcArgsWithDefaults().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFuncArgsWithDefaultsList
T visitFuncArgsWithDefaultsList(PostgreSQLStatementParser.FuncArgsWithDefaultsListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.funcArgsWithDefaultsList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFuncArgWithDefault
T visitFuncArgWithDefault(PostgreSQLStatementParser.FuncArgWithDefaultContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.funcArgWithDefault().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateLanguage
T visitCreateLanguage(PostgreSQLStatementParser.CreateLanguageContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createLanguage().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTransformElementList
T visitTransformElementList(PostgreSQLStatementParser.TransformElementListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.transformElementList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitValidatorClause
T visitValidatorClause(PostgreSQLStatementParser.ValidatorClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.validatorClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreatePolicy
T visitCreatePolicy(PostgreSQLStatementParser.CreatePolicyContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createPolicy().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateProcedure
T visitCreateProcedure(PostgreSQLStatementParser.CreateProcedureContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createProcedure().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreatePublication
T visitCreatePublication(PostgreSQLStatementParser.CreatePublicationContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createPublication().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPublicationForTables
T visitPublicationForTables(PostgreSQLStatementParser.PublicationForTablesContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.publicationForTables().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateRule
T visitCreateRule(PostgreSQLStatementParser.CreateRuleContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createRule().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRuleActionList
T visitRuleActionList(PostgreSQLStatementParser.RuleActionListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.ruleActionList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRuleActionStmt
T visitRuleActionStmt(PostgreSQLStatementParser.RuleActionStmtContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.ruleActionStmt().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRuleActionMulti
T visitRuleActionMulti(PostgreSQLStatementParser.RuleActionMultiContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.ruleActionMulti().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateTrigger
T visitCreateTrigger(PostgreSQLStatementParser.CreateTriggerContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createTrigger().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTriggerEvents
T visitTriggerEvents(PostgreSQLStatementParser.TriggerEventsContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.triggerEvents().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTriggerOneEvent
T visitTriggerOneEvent(PostgreSQLStatementParser.TriggerOneEventContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.triggerOneEvent().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTriggerActionTime
T visitTriggerActionTime(PostgreSQLStatementParser.TriggerActionTimeContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.triggerActionTime().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTriggerFuncArgs
T visitTriggerFuncArgs(PostgreSQLStatementParser.TriggerFuncArgsContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.triggerFuncArgs().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTriggerFuncArg
T visitTriggerFuncArg(PostgreSQLStatementParser.TriggerFuncArgContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.triggerFuncArg().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTriggerWhen
T visitTriggerWhen(PostgreSQLStatementParser.TriggerWhenContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.triggerWhen().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTriggerForSpec
T visitTriggerForSpec(PostgreSQLStatementParser.TriggerForSpecContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.triggerForSpec().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTriggerReferencing
T visitTriggerReferencing(PostgreSQLStatementParser.TriggerReferencingContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.triggerReferencing().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTriggerTransitions
T visitTriggerTransitions(PostgreSQLStatementParser.TriggerTransitionsContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.triggerTransitions().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTriggerTransition
T visitTriggerTransition(PostgreSQLStatementParser.TriggerTransitionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.triggerTransition().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTransitionRelName
T visitTransitionRelName(PostgreSQLStatementParser.TransitionRelNameContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.transitionRelName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTransitionRowOrTable
T visitTransitionRowOrTable(PostgreSQLStatementParser.TransitionRowOrTableContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.transitionRowOrTable().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTransitionOldOrNew
T visitTransitionOldOrNew(PostgreSQLStatementParser.TransitionOldOrNewContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.transitionOldOrNew().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateSequence
T visitCreateSequence(PostgreSQLStatementParser.CreateSequenceContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createSequence().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTempOption
T visitTempOption(PostgreSQLStatementParser.TempOptionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.tempOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateServer
T visitCreateServer(PostgreSQLStatementParser.CreateServerContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createServer().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateStatistics
T visitCreateStatistics(PostgreSQLStatementParser.CreateStatisticsContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createStatistics().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateSubscription
T visitCreateSubscription(PostgreSQLStatementParser.CreateSubscriptionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createSubscription().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateTablespace
T visitCreateTablespace(PostgreSQLStatementParser.CreateTablespaceContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createTablespace().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateTextSearch
T visitCreateTextSearch(PostgreSQLStatementParser.CreateTextSearchContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createTextSearch().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateTransform
T visitCreateTransform(PostgreSQLStatementParser.CreateTransformContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createTransform().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateType
T visitCreateType(PostgreSQLStatementParser.CreateTypeContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateTypeClauses
T visitCreateTypeClauses(PostgreSQLStatementParser.CreateTypeClausesContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createTypeClauses().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEnumValList
T visitEnumValList(PostgreSQLStatementParser.EnumValListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.enumValList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateUserMapping
T visitCreateUserMapping(PostgreSQLStatementParser.CreateUserMappingContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createUserMapping().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDiscard
T visitDiscard(PostgreSQLStatementParser.DiscardContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.discard().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropAccessMethod
T visitDropAccessMethod(PostgreSQLStatementParser.DropAccessMethodContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropAccessMethod().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropAggregate
T visitDropAggregate(PostgreSQLStatementParser.DropAggregateContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropAggregate().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAggregateWithArgtypesList
T visitAggregateWithArgtypesList(PostgreSQLStatementParser.AggregateWithArgtypesListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.aggregateWithArgtypesList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropCast
T visitDropCast(PostgreSQLStatementParser.DropCastContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropCast().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropCollation
T visitDropCollation(PostgreSQLStatementParser.DropCollationContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropCollation().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropConversion
T visitDropConversion(PostgreSQLStatementParser.DropConversionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropConversion().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropDomain
T visitDropDomain(PostgreSQLStatementParser.DropDomainContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropDomain().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropEventTrigger
T visitDropEventTrigger(PostgreSQLStatementParser.DropEventTriggerContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropEventTrigger().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropExtension
T visitDropExtension(PostgreSQLStatementParser.DropExtensionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropExtension().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropForeignDataWrapper
T visitDropForeignDataWrapper(PostgreSQLStatementParser.DropForeignDataWrapperContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropForeignDataWrapper().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropForeignTable
T visitDropForeignTable(PostgreSQLStatementParser.DropForeignTableContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropForeignTable().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropFunction
T visitDropFunction(PostgreSQLStatementParser.DropFunctionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropFunction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFunctionWithArgtypesList
T visitFunctionWithArgtypesList(PostgreSQLStatementParser.FunctionWithArgtypesListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.functionWithArgtypesList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropLanguage
T visitDropLanguage(PostgreSQLStatementParser.DropLanguageContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropLanguage().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropMaterializedView
T visitDropMaterializedView(PostgreSQLStatementParser.DropMaterializedViewContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropMaterializedView().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropOperator
T visitDropOperator(PostgreSQLStatementParser.DropOperatorContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropOperator().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOperatorWithArgtypesList
T visitOperatorWithArgtypesList(PostgreSQLStatementParser.OperatorWithArgtypesListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.operatorWithArgtypesList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropOperatorClass
T visitDropOperatorClass(PostgreSQLStatementParser.DropOperatorClassContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropOperatorClass().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropOperatorFamily
T visitDropOperatorFamily(PostgreSQLStatementParser.DropOperatorFamilyContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropOperatorFamily().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropOwned
T visitDropOwned(PostgreSQLStatementParser.DropOwnedContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropOwned().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropPolicy
T visitDropPolicy(PostgreSQLStatementParser.DropPolicyContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropPolicy().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropProcedure
T visitDropProcedure(PostgreSQLStatementParser.DropProcedureContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropProcedure().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropPublication
T visitDropPublication(PostgreSQLStatementParser.DropPublicationContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropPublication().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropRoutine
T visitDropRoutine(PostgreSQLStatementParser.DropRoutineContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropRoutine().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropRule
T visitDropRule(PostgreSQLStatementParser.DropRuleContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropRule().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropSequence
T visitDropSequence(PostgreSQLStatementParser.DropSequenceContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropSequence().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropServer
T visitDropServer(PostgreSQLStatementParser.DropServerContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropServer().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropStatistics
T visitDropStatistics(PostgreSQLStatementParser.DropStatisticsContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropStatistics().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropSubscription
T visitDropSubscription(PostgreSQLStatementParser.DropSubscriptionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropSubscription().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropTablespace
T visitDropTablespace(PostgreSQLStatementParser.DropTablespaceContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropTablespace().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropTextSearch
T visitDropTextSearch(PostgreSQLStatementParser.DropTextSearchContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropTextSearch().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropTransform
T visitDropTransform(PostgreSQLStatementParser.DropTransformContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropTransform().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropTrigger
T visitDropTrigger(PostgreSQLStatementParser.DropTriggerContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropTrigger().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropType
T visitDropType(PostgreSQLStatementParser.DropTypeContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropUserMapping
T visitDropUserMapping(PostgreSQLStatementParser.DropUserMappingContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropUserMapping().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropView
T visitDropView(PostgreSQLStatementParser.DropViewContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropView().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitImportForeignSchema
T visitImportForeignSchema(PostgreSQLStatementParser.ImportForeignSchemaContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.importForeignSchema().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitImportQualification
T visitImportQualification(PostgreSQLStatementParser.ImportQualificationContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.importQualification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitImportQualificationType
T visitImportQualificationType(PostgreSQLStatementParser.ImportQualificationTypeContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.importQualificationType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDeclare
T visitDeclare(PostgreSQLStatementParser.DeclareContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.declare().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCursorOptions
T visitCursorOptions(PostgreSQLStatementParser.CursorOptionsContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.cursorOptions().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCursorOption
T visitCursorOption(PostgreSQLStatementParser.CursorOptionContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.cursorOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMove
T visitMove(PostgreSQLStatementParser.MoveContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.move().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFetch
T visitFetch(PostgreSQLStatementParser.FetchContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.fetch().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitListen
T visitListen(PostgreSQLStatementParser.ListenContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.listen().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUnlisten
T visitUnlisten(PostgreSQLStatementParser.UnlistenContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.unlisten().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNotifyStmt
T visitNotifyStmt(PostgreSQLStatementParser.NotifyStmtContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.notifyStmt().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNext
T visitNext(PostgreSQLStatementParser.NextContext ctx)
Visit a parse tree produced by thenextlabeled alternative inPostgreSQLStatementParser.direction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPrior
T visitPrior(PostgreSQLStatementParser.PriorContext ctx)
Visit a parse tree produced by thepriorlabeled alternative inPostgreSQLStatementParser.direction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFirst
T visitFirst(PostgreSQLStatementParser.FirstContext ctx)
Visit a parse tree produced by thefirstlabeled alternative inPostgreSQLStatementParser.direction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLast
T visitLast(PostgreSQLStatementParser.LastContext ctx)
Visit a parse tree produced by thelastlabeled alternative inPostgreSQLStatementParser.direction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAbsoluteCount
T visitAbsoluteCount(PostgreSQLStatementParser.AbsoluteCountContext ctx)
Visit a parse tree produced by theabsoluteCountlabeled alternative inPostgreSQLStatementParser.direction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRelativeCount
T visitRelativeCount(PostgreSQLStatementParser.RelativeCountContext ctx)
Visit a parse tree produced by therelativeCountlabeled alternative inPostgreSQLStatementParser.direction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCount
T visitCount(PostgreSQLStatementParser.CountContext ctx)
Visit a parse tree produced by thecountlabeled alternative inPostgreSQLStatementParser.direction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAll
T visitAll(PostgreSQLStatementParser.AllContext ctx)
Visit a parse tree produced by thealllabeled alternative inPostgreSQLStatementParser.direction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitForward
T visitForward(PostgreSQLStatementParser.ForwardContext ctx)
Visit a parse tree produced by theforwardlabeled alternative inPostgreSQLStatementParser.direction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitForwardCount
T visitForwardCount(PostgreSQLStatementParser.ForwardCountContext ctx)
Visit a parse tree produced by theforwardCountlabeled alternative inPostgreSQLStatementParser.direction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitForwardAll
T visitForwardAll(PostgreSQLStatementParser.ForwardAllContext ctx)
Visit a parse tree produced by theforwardAlllabeled alternative inPostgreSQLStatementParser.direction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBackward
T visitBackward(PostgreSQLStatementParser.BackwardContext ctx)
Visit a parse tree produced by thebackwardlabeled alternative inPostgreSQLStatementParser.direction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBackwardCount
T visitBackwardCount(PostgreSQLStatementParser.BackwardCountContext ctx)
Visit a parse tree produced by thebackwardCountlabeled alternative inPostgreSQLStatementParser.direction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBackwardAll
T visitBackwardAll(PostgreSQLStatementParser.BackwardAllContext ctx)
Visit a parse tree produced by thebackwardAlllabeled alternative inPostgreSQLStatementParser.direction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPrepare
T visitPrepare(PostgreSQLStatementParser.PrepareContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.prepare().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitReindex
T visitReindex(PostgreSQLStatementParser.ReindexContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.reindex().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitReIndexClauses
T visitReIndexClauses(PostgreSQLStatementParser.ReIndexClausesContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.reIndexClauses().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitReindexOptionList
T visitReindexOptionList(PostgreSQLStatementParser.ReindexOptionListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.reindexOptionList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitReindexOptionElem
T visitReindexOptionElem(PostgreSQLStatementParser.ReindexOptionElemContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.reindexOptionElem().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitReindexTargetMultitable
T visitReindexTargetMultitable(PostgreSQLStatementParser.ReindexTargetMultitableContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.reindexTargetMultitable().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitReindexTargetType
T visitReindexTargetType(PostgreSQLStatementParser.ReindexTargetTypeContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.reindexTargetType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDeallocate
T visitDeallocate(PostgreSQLStatementParser.DeallocateContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.deallocate().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPrepTypeClause
T visitPrepTypeClause(PostgreSQLStatementParser.PrepTypeClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.prepTypeClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRefreshMaterializedView
T visitRefreshMaterializedView(PostgreSQLStatementParser.RefreshMaterializedViewContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.refreshMaterializedView().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterForeignTable
T visitAlterForeignTable(PostgreSQLStatementParser.AlterForeignTableContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterForeignTable().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterForeignTableClauses
T visitAlterForeignTableClauses(PostgreSQLStatementParser.AlterForeignTableClausesContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterForeignTableClauses().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateOperator
T visitCreateOperator(PostgreSQLStatementParser.CreateOperatorContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createOperator().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateOperatorClass
T visitCreateOperatorClass(PostgreSQLStatementParser.CreateOperatorClassContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createOperatorClass().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateOperatorFamily
T visitCreateOperatorFamily(PostgreSQLStatementParser.CreateOperatorFamilyContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createOperatorFamily().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateSchema
T visitCreateSchema(PostgreSQLStatementParser.CreateSchemaContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createSchema().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateSchemaClauses
T visitCreateSchemaClauses(PostgreSQLStatementParser.CreateSchemaClausesContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.createSchemaClauses().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSchemaEltList
T visitSchemaEltList(PostgreSQLStatementParser.SchemaEltListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.schemaEltList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSchemaStmt
T visitSchemaStmt(PostgreSQLStatementParser.SchemaStmtContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.schemaStmt().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSecurityLabelStmt
T visitSecurityLabelStmt(PostgreSQLStatementParser.SecurityLabelStmtContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.securityLabelStmt().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSecurityLabel
T visitSecurityLabel(PostgreSQLStatementParser.SecurityLabelContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.securityLabel().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSecurityLabelClausces
T visitSecurityLabelClausces(PostgreSQLStatementParser.SecurityLabelClauscesContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.securityLabelClausces().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPrivilegeClause
T visitPrivilegeClause(PostgreSQLStatementParser.PrivilegeClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.privilegeClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRoleClause
T visitRoleClause(PostgreSQLStatementParser.RoleClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.roleClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPrivilegeTypes
T visitPrivilegeTypes(PostgreSQLStatementParser.PrivilegeTypesContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.privilegeTypes().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOnObjectClause
T visitOnObjectClause(PostgreSQLStatementParser.OnObjectClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.onObjectClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNumericOnlyList
T visitNumericOnlyList(PostgreSQLStatementParser.NumericOnlyListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.numericOnlyList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPrivilegeLevel
T visitPrivilegeLevel(PostgreSQLStatementParser.PrivilegeLevelContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.privilegeLevel().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRoutineName
T visitRoutineName(PostgreSQLStatementParser.RoutineNameContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.routineName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPrivilegeType
T visitPrivilegeType(PostgreSQLStatementParser.PrivilegeTypeContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.privilegeType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterSchema
T visitAlterSchema(PostgreSQLStatementParser.AlterSchemaContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.alterSchema().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropSchema
T visitDropSchema(PostgreSQLStatementParser.DropSchemaContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.dropSchema().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitShow
T visitShow(PostgreSQLStatementParser.ShowContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.show().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSet
T visitSet(PostgreSQLStatementParser.SetContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.set().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRuntimeScope
T visitRuntimeScope(PostgreSQLStatementParser.RuntimeScopeContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.runtimeScope().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTimeZoneClause
T visitTimeZoneClause(PostgreSQLStatementParser.TimeZoneClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.timeZoneClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitConfigurationParameterClause
T visitConfigurationParameterClause(PostgreSQLStatementParser.ConfigurationParameterClauseContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.configurationParameterClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitResetParameter
T visitResetParameter(PostgreSQLStatementParser.ResetParameterContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.resetParameter().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExplain
T visitExplain(PostgreSQLStatementParser.ExplainContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.explain().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExplainableStmt
T visitExplainableStmt(PostgreSQLStatementParser.ExplainableStmtContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.explainableStmt().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExplainOptionList
T visitExplainOptionList(PostgreSQLStatementParser.ExplainOptionListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.explainOptionList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExplainOptionElem
T visitExplainOptionElem(PostgreSQLStatementParser.ExplainOptionElemContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.explainOptionElem().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExplainOptionArg
T visitExplainOptionArg(PostgreSQLStatementParser.ExplainOptionArgContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.explainOptionArg().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExplainOptionName
T visitExplainOptionName(PostgreSQLStatementParser.ExplainOptionNameContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.explainOptionName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAnalyzeKeyword
T visitAnalyzeKeyword(PostgreSQLStatementParser.AnalyzeKeywordContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.analyzeKeyword().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAnalyzeTable
T visitAnalyzeTable(PostgreSQLStatementParser.AnalyzeTableContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.analyzeTable().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitVacuumRelationList
T visitVacuumRelationList(PostgreSQLStatementParser.VacuumRelationListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.vacuumRelationList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitVacuumRelation
T visitVacuumRelation(PostgreSQLStatementParser.VacuumRelationContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.vacuumRelation().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitVacAnalyzeOptionList
T visitVacAnalyzeOptionList(PostgreSQLStatementParser.VacAnalyzeOptionListContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.vacAnalyzeOptionList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitVacAnalyzeOptionElem
T visitVacAnalyzeOptionElem(PostgreSQLStatementParser.VacAnalyzeOptionElemContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.vacAnalyzeOptionElem().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitVacAnalyzeOptionArg
T visitVacAnalyzeOptionArg(PostgreSQLStatementParser.VacAnalyzeOptionArgContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.vacAnalyzeOptionArg().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitVacAnalyzeOptionName
T visitVacAnalyzeOptionName(PostgreSQLStatementParser.VacAnalyzeOptionNameContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.vacAnalyzeOptionName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLoad
T visitLoad(PostgreSQLStatementParser.LoadContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.load().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitVacuum
T visitVacuum(PostgreSQLStatementParser.VacuumContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.vacuum().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEmptyStatement
T visitEmptyStatement(PostgreSQLStatementParser.EmptyStatementContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.emptyStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCall
T visitCall(PostgreSQLStatementParser.CallContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.call().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCallArguments
T visitCallArguments(PostgreSQLStatementParser.CallArgumentsContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.callArguments().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCallArgument
T visitCallArgument(PostgreSQLStatementParser.CallArgumentContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.callArgument().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPositionalNotation
T visitPositionalNotation(PostgreSQLStatementParser.PositionalNotationContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.positionalNotation().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNamedNotation
T visitNamedNotation(PostgreSQLStatementParser.NamedNotationContext ctx)
Visit a parse tree produced byPostgreSQLStatementParser.namedNotation().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
-