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.
10 lines
260 B
Text
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;
|