EVOLUTION-MANAGER
Edit File: column_groonga_scalar_unsupport_lz4.result
DROP TABLE IF EXISTS entries; CREATE TABLE entries ( id INT UNSIGNED PRIMARY KEY, content TEXT COMMENT 'flags "COLUMN_SCALAR|COMPRESS_LZ4"' ) DEFAULT CHARSET=utf8; Warnings: Warning 16506 The column flag 'COMPRESS_LZ4' is unsupported. It is ignored INSERT INTO entries (id, content) VALUES (1, "I found Mroonga that is a MySQL storage engine to use Groonga!"); SELECT * FROM entries; id content 1 I found Mroonga that is a MySQL storage engine to use Groonga! DROP TABLE entries;