Class PgCreateEventTrigger


public final class PgCreateEventTrigger extends PgParserAbstract
Parser for PostgreSQL CREATE EVENT TRIGGER statements.

This class handles parsing of event trigger definitions including trigger events (DDL_COMMAND_START, DDL_COMMAND_END, TABLE_REWRITE), filter conditions using tag matching, and the executable function that responds to the database events.

  • Field Details

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