mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 20:42:30 +01:00
5681a0dfdd
resulted in a duplicate test case for bug 38231.
11 lines
191 B
Text
11 lines
191 B
Text
SET storage_engine=InnoDB;
|
|
INSERT INTO bug38231 VALUES (1), (10), (300);
|
|
SET autocommit=0;
|
|
SELECT * FROM bug38231 FOR UPDATE;
|
|
a
|
|
1
|
|
10
|
|
300
|
|
TRUNCATE TABLE bug38231;
|
|
COMMIT;
|
|
DROP TABLE bug38231;
|