mirror of
https://github.com/MariaDB/server.git
synced 2025-01-24 07:44:22 +01:00
26 lines
404 B
Text
26 lines
404 B
Text
--source include/have_tokudb.inc
|
|
#
|
|
# Record inconsistency.
|
|
#
|
|
#
|
|
SET DEFAULT_STORAGE_ENGINE = 'tokudb';
|
|
|
|
--disable_warnings
|
|
DROP TABLE IF EXISTS t1;
|
|
--enable_warnings
|
|
|
|
CREATE TABLE t1 (c1 INT PRIMARY KEY);
|
|
INSERT INTO t1 VALUES (0);
|
|
INSERT INTO t1 VALUES (256);
|
|
COMMIT;
|
|
|
|
--disable_query_log
|
|
BEGIN;
|
|
UPDATE t1 SET c1 = c1 + 2;
|
|
COMMIT;
|
|
--enable_query_log
|
|
SELECT c1 from t1;
|
|
|
|
# Final cleanup.
|
|
DROP TABLE t1;
|
|
|