Class PgCreateOperator


public final class PgCreateOperator extends PgParserAbstract
Parser for PostgreSQL CREATE OPERATOR statements.

This class handles parsing of operator definitions including left and right argument types, operator function, commutator and negator operators, and various operator properties like MERGES, HASHES, RESTRICT, and JOIN.

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