-- -- PostgreSQL database dump -- SET statement_timeout = 0; SET lock_timeout = 0; SET client_encoding = 'UTF8'; SET standard_conforming_strings = on; SET check_function_bodies = false; SET client_min_messages = warning; -- -- Name: xx; Type: SCHEMA; Schema: -; Owner: postgres -- CREATE SCHEMA xx; ALTER SCHEMA xx OWNER TO postgres; -- -- Name: yy; Type: SCHEMA; Schema: -; Owner: postgres -- CREATE SCHEMA yy; ALTER SCHEMA yy OWNER TO postgres; -- -- Name: plpgsql; Type: EXTENSION; Schema: -; Owner: -- CREATE EXTENSION IF NOT EXISTS plpgsql WITH SCHEMA pg_catalog; -- -- Name: EXTENSION plpgsql; Type: COMMENT; Schema: -; Owner: -- COMMENT ON EXTENSION plpgsql IS 'PL/pgSQL procedural language'; SET search_path = xx, pg_catalog; SET default_tablespace = ''; SET default_with_oids = false; -- -- Name: test2; Type: TABLE; Schema: xx; Owner: postgres; Tablespace: -- CREATE TABLE test2 ( x integer ); ALTER TABLE test2 OWNER TO postgres; SET search_path = yy, pg_catalog; -- -- Name: zz; Type: TABLE; Schema: yy; Owner: postgres; Tablespace: -- CREATE TABLE zz ( x integer ); ALTER TABLE zz OWNER TO postgres; SET search_path = xx, pg_catalog; -- -- Data for Name: test2; Type: TABLE DATA; Schema: xx; Owner: postgres -- COPY test2 (x) FROM stdin; \. SET search_path = yy, pg_catalog; -- -- Data for Name: zz; Type: TABLE DATA; Schema: yy; Owner: postgres -- COPY zz (x) FROM stdin; \. -- -- Name: public; Type: ACL; Schema: -; Owner: postgres -- REVOKE ALL ON SCHEMA public FROM PUBLIC; REVOKE ALL ON SCHEMA public FROM postgres; GRANT ALL ON SCHEMA public TO postgres; GRANT ALL ON SCHEMA public TO PUBLIC; -- -- PostgreSQL database dump complete --