summaryrefslogtreecommitdiff
path: root/mysql-test/suite/tokudb.bugs/r/889.result
blob: 621f78e4fb49be82c147e4467a76217954038e92 (plain)
1
2
3
4
5
6
7
8
9
10
11
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;