diff options
author | Thirunarayanan Balathandayuthapani <thiru@mariadb.com> | 2020-12-04 13:59:02 +0530 |
---|---|---|
committer | Thirunarayanan Balathandayuthapani <thiru@mariadb.com> | 2020-12-04 13:59:02 +0530 |
commit | 7176e09f8a02ae0a1cc95dcbab66b0156e08ac80 (patch) | |
tree | 44cc1f09d7de59273031e7a168403b77f0d0e3ac /mysql-test/suite/innodb/r/innodb-bug-14084530.result | |
parent | 98baf80753943ff08fe502f62e91e50e04f6baf0 (diff) | |
download | mariadb-git-bb-10.5-MDEV-515.tar.gz |
MDEV-515 Addressed marko's review comments.bb-10.5-MDEV-515
Diffstat (limited to 'mysql-test/suite/innodb/r/innodb-bug-14084530.result')
-rw-r--r-- | mysql-test/suite/innodb/r/innodb-bug-14084530.result | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mysql-test/suite/innodb/r/innodb-bug-14084530.result b/mysql-test/suite/innodb/r/innodb-bug-14084530.result index 58cab531e2f..b8e0e3a579d 100644 --- a/mysql-test/suite/innodb/r/innodb-bug-14084530.result +++ b/mysql-test/suite/innodb/r/innodb-bug-14084530.result @@ -1,6 +1,9 @@ SET AUTOCOMMIT = 0; CREATE DATABASE testdb_wl5522; CREATE TABLE testdb_wl5522.t1 (c1 int ) engine = Innodb; +BEGIN; +INSERT INTO testdb_wl5522.t1 VALUES (1),(123),(331); +ROLLBACK; SELECT c1 FROM testdb_wl5522.t1; c1 FLUSH TABLES testdb_wl5522.t1 FOR EXPORT; |