mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 05:22:25 +01:00
f5692f21f9
the InnoDB Plugin tests are now in mysql-test/suite/innodb_plugin. Move InnoDB tests to the innodb suite at mysql-test/suite/innodb.
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;
|