mirror of
https://github.com/MariaDB/server.git
synced 2025-01-24 15:54:37 +01:00
12 lines
201 B
Text
12 lines
201 B
Text
|
SET STORAGE_ENGINE = 'tokudb';
|
||
|
DROP TABLE IF EXISTS t1;
|
||
|
CREATE TABLE t1 (c1 INT PRIMARY KEY);
|
||
|
INSERT INTO t1 VALUES (0);
|
||
|
INSERT INTO t1 VALUES (256);
|
||
|
COMMIT;
|
||
|
SELECT c1 from t1;
|
||
|
c1
|
||
|
2
|
||
|
258
|
||
|
DROP TABLE t1;
|