public final class PgAlterOwner extends PgParserAbstract
Parser for PostgreSQL ALTER ... OWNER TO statements.

This class handles parsing of ownership changes for various database objects including schemas, functions, operators, tables, views, domains, types, and other PostgreSQL objects. It supports both direct ownership changes and statement overrides for batch processing.

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