mirror of
https://github.com/MariaDB/server.git
synced 2025-07-05 12:42:17 +03:00
for general use. mysql-test/Makefile.am: Adding directories of additional test suites mysql-test/mysql-stress-test.pl: Adding check for additional errors checking during test run
14 lines
387 B
Plaintext
14 lines
387 B
Plaintext
################################################################################
|
|
#
|
|
# No uncommitted changes should be visible to a REPEATABLE-READ transaction
|
|
#
|
|
################################################################################
|
|
|
|
SET autocommit = 0;
|
|
START TRANSACTION;
|
|
|
|
--error 0, ER_LOCK_DEADLOCK, ER_LOCK_WAIT_TIMEOUT
|
|
SELECT * FROM t1 WHERE `is_uncommitted` > 0;
|
|
|
|
COMMIT;
|