@@ -14,7 +14,7 @@ Indexes:
14
14
"idx" btree (f1)
15
15
16
16
CREATE TABLE cmdata1(f1 TEXT COMPRESSION lz4);
17
- ERROR: unsupported LZ4 compression method
17
+ ERROR: compression method lz4 not supported
18
18
DETAIL: This functionality requires the server to be built with lz4 support.
19
19
HINT: You need to rebuild PostgreSQL using --with-lz4.
20
20
INSERT INTO cmdata1 VALUES(repeat('1234567890', 1004));
@@ -193,7 +193,7 @@ LINE 1: SELECT pg_column_compression(x) FROM compressmv;
193
193
^
194
194
-- test compression with partition
195
195
CREATE TABLE cmpart(f1 text COMPRESSION lz4) PARTITION BY HASH(f1);
196
- ERROR: unsupported LZ4 compression method
196
+ ERROR: compression method lz4 not supported
197
197
DETAIL: This functionality requires the server to be built with lz4 support.
198
198
HINT: You need to rebuild PostgreSQL using --with-lz4.
199
199
CREATE TABLE cmpart1 PARTITION OF cmpart FOR VALUES WITH (MODULUS 2, REMAINDER 0);
@@ -238,7 +238,7 @@ HINT: Available values: pglz.
238
238
SET default_toast_compression = 'pglz';
239
239
-- test alter compression method
240
240
ALTER TABLE cmdata ALTER COLUMN f1 SET COMPRESSION lz4;
241
- ERROR: unsupported LZ4 compression method
241
+ ERROR: compression method lz4 not supported
242
242
DETAIL: This functionality requires the server to be built with lz4 support.
243
243
HINT: You need to rebuild PostgreSQL using --with-lz4.
244
244
INSERT INTO cmdata VALUES (repeat('123456789', 4004));
@@ -272,7 +272,7 @@ ERROR: relation "compressmv" does not exist
272
272
ALTER TABLE cmpart1 ALTER COLUMN f1 SET COMPRESSION pglz;
273
273
ERROR: relation "cmpart1" does not exist
274
274
ALTER TABLE cmpart2 ALTER COLUMN f1 SET COMPRESSION lz4;
275
- ERROR: unsupported LZ4 compression method
275
+ ERROR: compression method lz4 not supported
276
276
DETAIL: This functionality requires the server to be built with lz4 support.
277
277
HINT: You need to rebuild PostgreSQL using --with-lz4.
278
278
-- new data should be compressed with the current compression method
@@ -312,7 +312,7 @@ SELECT pg_column_compression(f1) FROM cmdata;
312
312
-- test expression index
313
313
DROP TABLE cmdata2;
314
314
CREATE TABLE cmdata2 (f1 TEXT COMPRESSION pglz, f2 TEXT COMPRESSION lz4);
315
- ERROR: unsupported LZ4 compression method
315
+ ERROR: compression method lz4 not supported
316
316
DETAIL: This functionality requires the server to be built with lz4 support.
317
317
HINT: You need to rebuild PostgreSQL using --with-lz4.
318
318
CREATE UNIQUE INDEX idx1 ON cmdata2 ((f1 || f2));
0 commit comments