mariadb/mysql-test/suite/tokudb.bugs/r/889.result
Zardosht Kasheff 31ee98580d [t:2918], add tests to a common directory
git-svn-id: file:///svn/mysql/tests/mysql-test@23577 c7de825b-a66e-492c-adef-691d508d4ae1
2010-09-07 16:06:33 +00:00

11 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;