Class CommentOn
java.lang.Object
org.pgcodekeeper.core.parsers.antlr.base.statement.ParserAbstract<PgDatabase>
org.pgcodekeeper.core.parsers.antlr.pg.statement.PgParserAbstract
org.pgcodekeeper.core.parsers.antlr.pg.statement.CommentOn
Parser for PostgreSQL COMMENT ON statements.
This class handles parsing of comments on various database objects including tables, columns, functions, procedures, operators, constraints, indexes, views, types, domains, sequences, triggers, rules, policies, and other PostgreSQL database objects.
-
Constructor Summary
ConstructorsConstructorDescriptionCommentOn(SQLParser.Comment_on_statementContext ctx, PgDatabase db, ISettings settings) Constructs a new CommentOn parser. -
Method Summary
Modifier and TypeMethodDescriptionvoidParses a database object from the current context.Methods inherited from class org.pgcodekeeper.core.parsers.antlr.pg.statement.PgParserAbstract
getIdentifiers, getIdentifiers, getIdentifiers, getTypeName, parseArguments, parseOperatorSignature, parseSignature, unquoteQuotedStringMethods inherited from class org.pgcodekeeper.core.parsers.antlr.base.statement.ParserAbstract
fillOptionParams, fillOptionParams, getFullCtxText, getFullCtxText, getFullCtxText, getSafe, getSafe, parseArgMode, parseObject
-
Constructor Details
-
CommentOn
Constructs a new CommentOn parser.- Parameters:
ctx- the COMMENT ON statement contextdb- the PostgreSQL database objectsettings- the ISettings object
-
-
Method Details
-
parseObject
public void parseObject()Description copied from class:ParserAbstractParses a database object from the current context. Must be implemented by concrete subclasses to handle specific object types.- Specified by:
parseObjectin classParserAbstract<PgDatabase>
-