summaryrefslogtreecommitdiff
path: root/storage/mroonga/mysql-test/mroonga/storage/r/column_groonga_scalar_unsupport_lz4.result
blob: a9a5f55fd7f39f173d22768de5bcdc8f169fd2c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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;