@@ -52,20 +52,22 @@ SET default_table_access_method = heap;
5252-- rather have to handle the ignore at a later stage.
5353
5454--
55- -- Name: unignorable_table; Type: TABLE; Schema: public ; Owner: postgres
55+ -- Name: unignorable_table; Type: TABLE; Schema: dstschema ; Owner: postgres
5656--
5757
58- CREATE TABLE public.unignorable_table (
58+ create schema dstschema;
59+
60+ CREATE TABLE dstschema.unignorable_table (
5961 id integer NOT NULL
6062);
6163
62- ALTER TABLE public .unignorable_table OWNER TO postgres;
64+ ALTER TABLE dstschema .unignorable_table OWNER TO postgres;
6365
6466--
65- -- Name: unignorable_table_id_seq; Type: SEQUENCE; Schema: public ; Owner: postgres
67+ -- Name: unignorable_table_id_seq; Type: SEQUENCE; Schema: dstschema ; Owner: postgres
6668--
6769
68- CREATE SEQUENCE public .unignorable_table_id_seq
70+ CREATE SEQUENCE dstschema .unignorable_table_id_seq
6971 AS integer
7072 START WITH 1
7173 INCREMENT BY 1
@@ -74,35 +76,35 @@ CREATE SEQUENCE public.unignorable_table_id_seq
7476 CACHE 1;
7577
7678
77- ALTER TABLE public .unignorable_table_id_seq OWNER TO postgres;
79+ ALTER TABLE dstschema .unignorable_table_id_seq OWNER TO postgres;
7880
7981--
80- -- Name: unignorable_table_id_seq; Type: SEQUENCE OWNED BY; Schema: public ; Owner: postgres
82+ -- Name: unignorable_table_id_seq; Type: SEQUENCE OWNED BY; Schema: dstschema ; Owner: postgres
8183--
8284
83- ALTER SEQUENCE public .unignorable_table_id_seq OWNED BY public .unignorable_table.id;
85+ ALTER SEQUENCE dstschema .unignorable_table_id_seq OWNED BY dstschema .unignorable_table.id;
8486
8587--
86- -- Name: unignorable_table unignorable_table_pkey; Type: CONSTRAINT; Schema: public ; Owner: postgres
88+ -- Name: unignorable_table unignorable_table_pkey; Type: CONSTRAINT; Schema: dstschema ; Owner: postgres
8789--
8890
89- ALTER TABLE ONLY public .unignorable_table
91+ ALTER TABLE ONLY dstschema .unignorable_table
9092 ADD CONSTRAINT unignorable_table_pkey PRIMARY KEY (id);
9193
9294--
93- -- Name: unignorable_table unignorable_table_id; Type: DEFAULT; Schema: public ; Owner: postgres
95+ -- Name: unignorable_table unignorable_table_id; Type: DEFAULT; Schema: dstschema ; Owner: postgres
9496--
9597
96- ALTER TABLE ONLY public .unignorable_table ALTER COLUMN id SET DEFAULT nextval('public .unignorable_table_id_seq'::regclass);
98+ ALTER TABLE ONLY dstschema .unignorable_table ALTER COLUMN id SET DEFAULT nextval('dstschema .unignorable_table_id_seq'::regclass);
9799
98100--
99- -- Data for Name: unignorable_table; Type: TABLE DATA; Schema: public ; Owner: postgres
101+ -- Data for Name: unignorable_table; Type: TABLE DATA; Schema: dstschema ; Owner: postgres
100102--
101103
102- INSERT INTO public .unignorable_table VALUES (1);
104+ INSERT INTO dstschema .unignorable_table VALUES (1);
103105
104106--
105- -- Name: unignorable_table_id_seq; Type: SEQUENCE SET; Schema: public ; Owner: postgres
107+ -- Name: unignorable_table_id_seq; Type: SEQUENCE SET; Schema: dstschema ; Owner: postgres
106108--
107109
108- SELECT pg_catalog.setval('public .unignorable_table_id_seq', 2, false);
110+ SELECT pg_catalog.setval('dstschema .unignorable_table_id_seq', 2, false);
0 commit comments