mirror of
https://github.com/MariaDB/server.git
synced 2025-12-01 17:39:21 +03:00
Check whether the definer host string is not null before appending it to the specified buffer.
12 lines
251 B
Plaintext
12 lines
251 B
Plaintext
--source include/galera_cluster.inc
|
|
--source include/have_innodb.inc
|
|
|
|
--echo #
|
|
--echo # MDEV-7222: Cluster Node Crash at CREATE DEFINER statement
|
|
--echo #
|
|
USE test;
|
|
CREATE DEFINER=CURRENT_USER VIEW v1 AS SELECT 1;
|
|
DROP VIEW v1;
|
|
|
|
--echo # End of tests
|