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.
8 lines
152 B
Plaintext
8 lines
152 B
Plaintext
#
|
|
# MDEV-7222: Cluster Node Crash at CREATE DEFINER statement
|
|
#
|
|
USE test;
|
|
CREATE DEFINER=CURRENT_USER VIEW v1 AS SELECT 1;
|
|
DROP VIEW v1;
|
|
# End of tests
|