1 /* contrib/postgres_fdw/postgres_fdw--1.0.sql */
3 -- complain if script is sourced in psql, rather than via CREATE EXTENSION
4 \echo Use "CREATE EXTENSION postgres_fdw" to load this file. \quit
6 CREATE FUNCTION postgres_fdw_handler()
11 CREATE FUNCTION postgres_fdw_validator(text[], oid)
16 CREATE FOREIGN DATA WRAPPER postgres_fdw
17 HANDLER postgres_fdw_handler
18 VALIDATOR postgres_fdw_validator;