Class CreateFtsConfiguration
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.CreateFtsConfiguration
Parser for PostgreSQL CREATE TEXT SEARCH CONFIGURATION statements.
This class handles parsing of full-text search configuration definitions including parser references and configuration parameters. Text search configurations define how documents are processed for full-text search operations.
-
Constructor Summary
ConstructorsConstructorDescriptionCreateFtsConfiguration(SQLParser.Create_fts_configuration_statementContext ctx, PgDatabase db, ISettings settings) Constructs a new CreateFtsConfiguration 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
-
CreateFtsConfiguration
public CreateFtsConfiguration(SQLParser.Create_fts_configuration_statementContext ctx, PgDatabase db, ISettings settings) Constructs a new CreateFtsConfiguration parser.- Parameters:
ctx- the CREATE TEXT SEARCH CONFIGURATION 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>
-