mariadb/mysql-test/suite/innodb/r/innodb-rollback.result
Jan Lindström 48554fe2db MDEV-18632: wsrep_is_wsrep_xid: Conditional jump or move depends on uninitialised value
Transaction XID is not initialized before transaction is started.
2019-02-19 16:12:00 +02:00

10 lines
260 B
Text

CREATE TABLE t1 (a INT) ENGINE=InnoDB;
connect con1,localhost,root,,test;
ALTER TABLE t1;
connect con2,localhost,root,,test;
SELECT f() FROM t1;
ERROR 42000: FUNCTION test.f does not exist
disconnect con2;
disconnect con1;
connection default;
DROP TABLE t1;