mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
MDEV-18632: wsrep_is_wsrep_xid: Conditional jump or move depends on uninitialised value
Transaction XID is not initialized before transaction is started.
This commit is contained in:
10
mysql-test/suite/innodb/r/innodb-rollback.result
Normal file
10
mysql-test/suite/innodb/r/innodb-rollback.result
Normal file
@ -0,0 +1,10 @@
|
||||
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;
|
Reference in New Issue
Block a user