Repair ALTER EXTENSION ... SET SCHEMA.
[pgsql.git] / src / test / modules / test_extensions / test_ext_set_schema--1.0.sql
blob66df583ca95b5ce99688ba5335e6bb9969144715
1 /* src/test/modules/test_extensions/test_ext_set_schema--1.0.sql */
2 -- complain if script is sourced in psql, rather than via CREATE EXTENSION
3 \echo Use "CREATE EXTENSION test_ext_set_schema" to load this file. \quit
5 -- Create various object types that need extra handling by SET SCHEMA.
7 CREATE TABLE ess_table (f1 int primary key, f2 int, f3 text,
8                         constraint ess_c check (f1 != f2));
10 CREATE FUNCTION ess_func(int) RETURNS text
11 BEGIN ATOMIC
12   SELECT f3 FROM ess_table WHERE f1 = $1;
13 END;
15 CREATE TYPE ess_range_type AS RANGE (subtype = text);
17 CREATE TYPE ess_composite_type AS (f1 int, f2 ess_range_type);