1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +03:00
Files
mariadb/mysql-test/suite/galera/t/MDEV-25494.test
Jan Lindström cf3adaaa9e MDEV-25494 : Assertion `tl->table == __null' failed in bool THD::open_temporary_table(TABLE_LIST*)
There is no need to open or process temporary tables at
wsrep_append_fk_parent_table.
2022-01-18 07:10:48 +02:00

8 lines
187 B
Plaintext

--source include/galera_cluster.inc
SET SESSION binlog_format=STATEMENT;
CREATE TEMPORARY TABLE t (i INT) UNION=(t);
ALTER TABLE t ADD extrac CHAR(1);
SHOW CREATE TABLE t;
DROP TABLE t;