File tree 1 file changed +7
-3
lines changed
src/test/regress/expected
1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -216,13 +216,16 @@ SELECT pg_column_compression(f1) FROM cmpart2;
216
216
-----------------------
217
217
(0 rows)
218
218
219
- -- test compression with inheritance, error
220
- CREATE TABLE cminh() INHERITS(cmdata, cmdata1);
219
+ -- test compression with inheritance
220
+ CREATE TABLE cminh() INHERITS(cmdata, cmdata1); -- error
221
221
ERROR: relation "cmdata1" does not exist
222
- CREATE TABLE cminh(f1 TEXT COMPRESSION lz4) INHERITS(cmdata);
222
+ CREATE TABLE cminh(f1 TEXT COMPRESSION lz4) INHERITS(cmdata); -- error
223
223
NOTICE: merging column "f1" with inherited definition
224
224
ERROR: column "f1" has a compression method conflict
225
225
DETAIL: pglz versus lz4
226
+ CREATE TABLE cmdata3(f1 text);
227
+ CREATE TABLE cminh() INHERITS (cmdata, cmdata3);
228
+ NOTICE: merging multiple inherited definitions of column "f1"
226
229
-- test default_toast_compression GUC
227
230
SET default_toast_compression = '';
228
231
ERROR: invalid value for parameter "default_toast_compression": ""
@@ -246,6 +249,7 @@ INSERT INTO cmdata VALUES (repeat('123456789', 4004));
246
249
f1 | text | | | | extended | pglz | |
247
250
Indexes:
248
251
"idx" btree (f1)
252
+ Child tables: cminh
249
253
250
254
SELECT pg_column_compression(f1) FROM cmdata;
251
255
pg_column_compression
You can’t perform that action at this time.
0 commit comments