public final class AlterMsBatch extends BatchContextProcessor
Parser for Microsoft SQL ALTER statements in batch context. Handles ALTER PROCEDURE, ALTER FUNCTION, ALTER VIEW, and ALTER TRIGGER statements within batch processing context with proper location tracking.
  • Constructor Details

    • AlterMsBatch

      public AlterMsBatch(TSQLParser.Batch_statement_bodyContext ctx, MsDatabase db, org.antlr.v4.runtime.CommonTokenStream stream, ISettings settings)
      Creates a parser for Microsoft SQL ALTER statements in batch context.
      Parameters:
      ctx - the batch statement body context containing the ALTER statement
      db - the Microsoft SQL database schema being processed
      stream - the token stream for source code processing
      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>