public final class CreateCast extends PgParserAbstract
Parser for PostgreSQL CREATE CAST statements.

This class handles parsing of type cast definitions including function-based casts, binary-compatible casts, and I/O conversion casts. It processes the source and target types, cast method, and cast context (implicit, assignment, explicit).

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