mirror of
https://github.com/MariaDB/server.git
synced 2025-01-23 07:14:17 +01:00
31ee98580d
git-svn-id: file:///svn/mysql/tests/mysql-test@23577 c7de825b-a66e-492c-adef-691d508d4ae1
26 lines
No EOL
637 B
Text
Executable file
26 lines
No EOL
637 B
Text
Executable file
# ticket 895 is a query optimization problem with the primary key
|
|
|
|
#--source include/have_tokudb.inc
|
|
SET STORAGE_ENGINE = 'tokudb';
|
|
|
|
--disable_warnings
|
|
DROP TABLE IF EXISTS test_bug;
|
|
--enable_warnings
|
|
|
|
create table test_bug (
|
|
id INT NOT NULL PRIMARY KEY,
|
|
foo CHAR(10)
|
|
) ENGINE=TokuDB;
|
|
|
|
set session transaction isolation level read uncommitted;
|
|
|
|
replace into test_bug (id, foo) VALUES (1, "bar");
|
|
|
|
insert ignore into test_bug (id, foo) VALUES (1, "bar");
|
|
|
|
insert into test_bug (id, foo) VALUES (1, "bar") ON DUPLICATE KEY UPDATE foo='baz';
|
|
|
|
set session transaction isolation level serializable;
|
|
|
|
# Final cleanup.
|
|
DROP TABLE test_bug; |