Update 02843_gcd_codec.sql

This commit is contained in:
Александр Нам 2023-08-12 02:50:00 +03:00 committed by GitHub
parent 5fc20dc0f5
commit e63288edf4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,4 +1,4 @@
DROP TABLE IF EXISTS aboba;
CREATE TABLE aboba (s String, ui UInt8 CODEC(GCD, ZSTD)) ENGINE = Memory;
CREATE TABLE aboba (s String, ui UInt8 CODEC(GCD)) ENGINE = Memory;
INSERT INTO aboba (*) VALUES ('Hello', 239), ('World', 0), ('Goodbye', 37);
SELECT ui FROM aboba;