mirror of
https://github.com/MariaDB/server.git
synced 2025-02-01 19:41:47 +01:00
5b18459554
git-svn-id: file:///svn/mysql/tests/mysql-test@48570 c7de825b-a66e-492c-adef-691d508d4ae1
11 lines
209 B
Text
11 lines
209 B
Text
SET DEFAULT_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;
|