Fix expected test output
For builds without lz4, for 8f0a97dfff.
This commit is contained in:
parent
8f0a97dfff
commit
4a044b9497
@ -216,13 +216,16 @@ SELECT pg_column_compression(f1) FROM cmpart2;
|
|||||||
-----------------------
|
-----------------------
|
||||||
(0 rows)
|
(0 rows)
|
||||||
|
|
||||||
-- test compression with inheritance, error
|
-- test compression with inheritance
|
||||||
CREATE TABLE cminh() INHERITS(cmdata, cmdata1);
|
CREATE TABLE cminh() INHERITS(cmdata, cmdata1); -- error
|
||||||
ERROR: relation "cmdata1" does not exist
|
ERROR: relation "cmdata1" does not exist
|
||||||
CREATE TABLE cminh(f1 TEXT COMPRESSION lz4) INHERITS(cmdata);
|
CREATE TABLE cminh(f1 TEXT COMPRESSION lz4) INHERITS(cmdata); -- error
|
||||||
NOTICE: merging column "f1" with inherited definition
|
NOTICE: merging column "f1" with inherited definition
|
||||||
ERROR: column "f1" has a compression method conflict
|
ERROR: column "f1" has a compression method conflict
|
||||||
DETAIL: pglz versus lz4
|
DETAIL: pglz versus lz4
|
||||||
|
CREATE TABLE cmdata3(f1 text);
|
||||||
|
CREATE TABLE cminh() INHERITS (cmdata, cmdata3);
|
||||||
|
NOTICE: merging multiple inherited definitions of column "f1"
|
||||||
-- test default_toast_compression GUC
|
-- test default_toast_compression GUC
|
||||||
SET default_toast_compression = '';
|
SET default_toast_compression = '';
|
||||||
ERROR: invalid value for parameter "default_toast_compression": ""
|
ERROR: invalid value for parameter "default_toast_compression": ""
|
||||||
@ -246,6 +249,7 @@ INSERT INTO cmdata VALUES (repeat('123456789', 4004));
|
|||||||
f1 | text | | | | extended | pglz | |
|
f1 | text | | | | extended | pglz | |
|
||||||
Indexes:
|
Indexes:
|
||||||
"idx" btree (f1)
|
"idx" btree (f1)
|
||||||
|
Child tables: cminh
|
||||||
|
|
||||||
SELECT pg_column_compression(f1) FROM cmdata;
|
SELECT pg_column_compression(f1) FROM cmdata;
|
||||||
pg_column_compression
|
pg_column_compression
|
||||||
|
Loading…
x
Reference in New Issue
Block a user