18 lines
464 B
Plaintext
18 lines
464 B
Plaintext
--source suite/xengine/include/have_xengine.inc
|
|
|
|
--disable_warnings
|
|
drop table if exists t1;
|
|
--enable_warnings
|
|
|
|
SET SESSION TRANSACTION ISOLATION LEVEL SERIALIZABLE;
|
|
CREATE TABLE t1(a int);
|
|
SET TRANSACTION ISOLATION LEVEL READ COMMITTED;
|
|
INSERT INTO t1 VALUES(1);
|
|
--error ER_UNKNOWN_ERROR
|
|
INSERT INTO t1 VALUES(1);
|
|
SET SESSION TRANSACTION ISOLATION LEVEL READ COMMITTED;
|
|
select * from t1;
|
|
drop table t1;
|
|
|
|
--source suite/xengine/include/check_xengine_log_error.inc
|