Class CreateMsStatistics


public final class CreateMsStatistics extends MsParserAbstract
Parser for Microsoft SQL CREATE STATISTICS statements. Handles statistics creation on table columns including filter conditions and various statistics options like SAMPLE, NORECOMPUTE, AUTO_DROP, and INCREMENTAL.
  • Constructor Details

    • CreateMsStatistics

      public CreateMsStatistics(TSQLParser.Create_statisticsContext ctx, MsDatabase db, ISettings settings)
      Creates a parser for Microsoft SQL CREATE STATISTICS statements.
      Parameters:
      ctx - the ANTLR parse tree context for the CREATE STATISTICS 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>