public final class CreateFdw extends PgParserAbstract
Parser for PostgreSQL CREATE FOREIGN DATA WRAPPER statements.

This class handles parsing of foreign data wrapper definitions including handler and validator functions, and wrapper-specific options. Foreign data wrappers provide access to external data sources.

  • Field Details

    • VALIDATOR_SIGNATURE

      public static final String VALIDATOR_SIGNATURE
      Function signature for foreign data wrapper validator functions.
      See Also:
    • HANDLER_SIGNATURE

      public static final String HANDLER_SIGNATURE
      Function signature for foreign data wrapper handler functions.
      See Also:
  • 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>