mariadb/mysql-test/suite/galera/t/galera_view.test
Jan Lindström 25cb2b373c MDEV-22128 : Server with wsrep_on crashes in do_rename upon RENAME TABLE on a view
We need to make sure that hton is not same as view_pseudo_hton
that is not NULL but not usable.
2020-04-28 16:20:24 +03:00

7 lines
113 B
Text

--source include/galera_cluster.inc
CREATE VIEW v AS SELECT 1;
RENAME TABLE v TO v2;
# Cleanup
DROP VIEW v2;