mirror of
https://github.com/MariaDB/server.git
synced 2025-01-30 18:41:56 +01:00
48554fe2db
Transaction XID is not initialized before transaction is started.
17 lines
391 B
Text
17 lines
391 B
Text
--source include/have_innodb.inc
|
|
|
|
#
|
|
# MDEV-18632: wsrep_is_wsrep_xid: Conditional jump or move depends on uninitialised value
|
|
#
|
|
CREATE TABLE t1 (a INT) ENGINE=InnoDB;
|
|
--connect (con1,localhost,root,,test)
|
|
ALTER TABLE t1;
|
|
--connect (con2,localhost,root,,test)
|
|
--error ER_SP_DOES_NOT_EXIST
|
|
SELECT f() FROM t1;
|
|
|
|
# Cleanup
|
|
--disconnect con2
|
|
--disconnect con1
|
|
--connection default
|
|
DROP TABLE t1;
|