public final class PgAlterSequence extends PgParserAbstract
Parser for PostgreSQL ALTER SEQUENCE statements.

This class handles parsing of sequence alterations including changing sequence properties, ownership relationships, and logging behavior. It also handles special cases for sequences generated by identity columns.

  • Constructor Details

  • 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<PgDatabase>