public final class CreateMsIndex extends MsParserAbstract
Parser for Microsoft SQL CREATE INDEX statements. Handles creation of regular indexes and columnstore indexes with support for unique, clustered/non-clustered options, and various index configurations.
  • Constructor Details

    • CreateMsIndex

      public CreateMsIndex(TSQLParser.Create_indexContext ctx, MsDatabase db, ISettings settings)
      Creates a parser for Microsoft SQL CREATE INDEX statements.
      Parameters:
      ctx - the ANTLR parse tree context for the CREATE INDEX statement
      db - the Microsoft SQL database schema being processed
      settings - parsing configuration settings
  • Method Details

    • parseObject

      public void parseObject()
      Description copied from class: ParserAbstract
      Parses a database object from the current context. Must be implemented by concrete subclasses to handle specific object types.
      Specified by:
      parseObject in class ParserAbstract<MsDatabase>