1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219
|
\set VERBOSITY terse
-- predictability
SET synchronous_commit = on;
DROP TABLE IF EXISTS filter_table_1;
NOTICE: table "filter_table_1" does not exist, skipping
DROP TABLE IF EXISTS filter_table_2;
NOTICE: table "filter_table_2" does not exist, skipping
DROP TABLE IF EXISTS filter_table_3;
NOTICE: table "filter_table_3" does not exist, skipping
DROP TABLE IF EXISTS filter_table_4;
NOTICE: table "filter_table_4" does not exist, skipping
DROP TABLE IF EXISTS "Filter_table_5";
NOTICE: table "Filter_table_5" does not exist, skipping
DROP TABLE IF EXISTS "filter table_6";
NOTICE: table "filter table_6" does not exist, skipping
DROP TABLE IF EXISTS "filter.table_7";
NOTICE: table "filter.table_7" does not exist, skipping
DROP TABLE IF EXISTS "filter,table_8";
NOTICE: table "filter,table_8" does not exist, skipping
DROP TABLE IF EXISTS "filter""table_9";
NOTICE: table "filter"table_9" does not exist, skipping
DROP TABLE IF EXISTS " filter_table_10";
NOTICE: table " filter_table_10" does not exist, skipping
DROP TABLE IF EXISTS "*";
NOTICE: table "*" does not exist, skipping
DROP SCHEMA IF EXISTS filter_schema_1 CASCADE;
NOTICE: schema "filter_schema_1" does not exist, skipping
DROP SCHEMA IF EXISTS filter_schema_2 CASCADE;
NOTICE: schema "filter_schema_2" does not exist, skipping
DROP SCHEMA IF EXISTS "*" CASCADE;
NOTICE: schema "*" does not exist, skipping
CREATE SCHEMA filter_schema_1;
CREATE SCHEMA filter_schema_2;
CREATE SCHEMA "*";
CREATE TABLE filter_table_1 (a integer, b text, primary key(a));
CREATE TABLE filter_schema_1.filter_table_1 (a integer, b text, primary key(a));
CREATE TABLE filter_schema_1.filter_table_2 (a integer, b text, primary key(a));
CREATE TABLE filter_schema_2.filter_table_1 (a integer, b text, primary key(a));
CREATE TABLE filter_schema_2.filter_table_2 (a integer, b text, primary key(a));
CREATE TABLE filter_schema_2.filter_table_3 (a integer, b text, primary key(a));
CREATE TABLE filter_table_2 (a integer, b text, primary key(a));
CREATE TABLE filter_table_3 (a integer, b text, primary key(a));
CREATE TABLE filter_table_4 (a integer, b text, primary key(a));
CREATE TABLE "Filter_table_5" (a integer, b text, primary key(a));
CREATE TABLE "filter table_6" (a integer, b text, primary key(a));
CREATE TABLE "filter.table_7" (a integer, b text, primary key(a));
CREATE TABLE "filter,table_8" (a integer, b text, primary key(a));
CREATE TABLE "filter""table_9" (a integer, b text, primary key(a));
CREATE TABLE " filter_table_10" (a integer, b text, primary key(a));
CREATE TABLE "*" (a integer, b text, primary key(a));
CREATE TABLE "*".filter_table_0 (a integer, b text, primary key(a));
SELECT 'init' FROM pg_create_logical_replication_slot('regression_slot', 'wal2json');
?column?
----------
init
(1 row)
INSERT INTO filter_table_1 (a, b) VALUES(1, 'public.filter_table_1');
INSERT INTO filter_schema_1.filter_table_1 (a, b) VALUES(1, 'filter_schema_1.filter_table_1');
INSERT INTO filter_schema_1.filter_table_2 (a, b) VALUES(1, 'filter_schema_1.filter_table_2');
INSERT INTO filter_schema_2.filter_table_1 (a, b) VALUES(1, 'filter_schema_2.filter_table_1');
INSERT INTO filter_schema_2.filter_table_2 (a, b) VALUES(1, 'filter_schema_2.filter_table_2');
INSERT INTO filter_schema_2.filter_table_3 (a, b) VALUES(1, 'filter_schema_2.filter_table_3');
INSERT INTO filter_table_2 (a, b) VALUES(1, 'public.filter_table_2');
INSERT INTO filter_table_3 (a, b) VALUES(1, 'public.filter_table_3');
INSERT INTO filter_table_4 (a, b) VALUES(1, 'public.filter_table_4');
INSERT INTO "Filter_table_5" (a, b) VALUES(1, 'public.Filter_table_5');
INSERT INTO "filter table_6" (a, b) VALUES(1, 'public.filter table_6');
INSERT INTO "filter.table_7" (a, b) VALUES(1, 'public.filter.table_7');
INSERT INTO "filter,table_8" (a, b) VALUES(1, 'public.filter,table_8');
INSERT INTO "filter""table_9" (a, b) VALUES(1, 'public.filter"table_9');
INSERT INTO " filter_table_10" (a, b) VALUES(1, 'public. filter_table_10');
INSERT INTO "*" (a, b) VALUES(1, 'public.*');
INSERT INTO "*".filter_table_0 (a, b) VALUES(1, '*.filter_table_0');
SELECT data FROM pg_logical_slot_peek_changes('regression_slot', NULL, NULL, 'format-version', '1', 'pretty-print', '1', 'filter-tables', ' foo.bar,*.filter_table_1 ,filter_schema_2.* , public.filter_table_3 , public.Filter_table_5, public.filter\ table_6, public.filter\.table_7 , public.filter\,table_8 , public.filter"table_9, *.\ filter_table_10 , public.\* , \*.filter_table_0 ');
data
-------------------------------------------------------------------------------
{ +
"change": [ +
] +
}
{ +
"change": [ +
] +
}
{ +
"change": [ +
{ +
"kind": "insert", +
"schema": "filter_schema_1", +
"table": "filter_table_2", +
"columnnames": ["a", "b"], +
"columntypes": ["integer", "text"], +
"columnvalues": [1, "filter_schema_1.filter_table_2"]+
} +
] +
}
{ +
"change": [ +
] +
}
{ +
"change": [ +
] +
}
{ +
"change": [ +
] +
}
{ +
"change": [ +
{ +
"kind": "insert", +
"schema": "public", +
"table": "filter_table_2", +
"columnnames": ["a", "b"], +
"columntypes": ["integer", "text"], +
"columnvalues": [1, "public.filter_table_2"] +
} +
] +
}
{ +
"change": [ +
] +
}
{ +
"change": [ +
{ +
"kind": "insert", +
"schema": "public", +
"table": "filter_table_4", +
"columnnames": ["a", "b"], +
"columntypes": ["integer", "text"], +
"columnvalues": [1, "public.filter_table_4"] +
} +
] +
}
{ +
"change": [ +
] +
}
{ +
"change": [ +
] +
}
{ +
"change": [ +
] +
}
{ +
"change": [ +
] +
}
{ +
"change": [ +
] +
}
{ +
"change": [ +
] +
}
{ +
"change": [ +
] +
}
{ +
"change": [ +
] +
}
(17 rows)
SELECT data FROM pg_logical_slot_peek_changes('regression_slot', NULL, NULL, 'format-version', '2', 'filter-tables', ' foo.bar,*.filter_table_1 ,filter_schema_2.* , public.filter_table_3 , public.Filter_table_5, public.filter\ table_6, public.filter\.table_7 , public.filter\,table_8 , public.filter"table_9, *.\ filter_table_10 , public.\* , \*.filter_table_0 ');
data
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
{"action":"B"}
{"action":"C"}
{"action":"B"}
{"action":"C"}
{"action":"B"}
{"action":"I","schema":"filter_schema_1","table":"filter_table_2","columns":[{"name":"a","type":"integer","value":1},{"name":"b","type":"text","value":"filter_schema_1.filter_table_2"}]}
{"action":"C"}
{"action":"B"}
{"action":"C"}
{"action":"B"}
{"action":"C"}
{"action":"B"}
{"action":"C"}
{"action":"B"}
{"action":"I","schema":"public","table":"filter_table_2","columns":[{"name":"a","type":"integer","value":1},{"name":"b","type":"text","value":"public.filter_table_2"}]}
{"action":"C"}
{"action":"B"}
{"action":"C"}
{"action":"B"}
{"action":"I","schema":"public","table":"filter_table_4","columns":[{"name":"a","type":"integer","value":1},{"name":"b","type":"text","value":"public.filter_table_4"}]}
{"action":"C"}
{"action":"B"}
{"action":"C"}
{"action":"B"}
{"action":"C"}
{"action":"B"}
{"action":"C"}
{"action":"B"}
{"action":"C"}
{"action":"B"}
{"action":"C"}
{"action":"B"}
{"action":"C"}
{"action":"B"}
{"action":"C"}
{"action":"B"}
{"action":"C"}
(37 rows)
SELECT 'stop' FROM pg_drop_replication_slot('regression_slot');
?column?
----------
stop
(1 row)
|