mirror of
https://github.com/MariaDB/server.git
synced 2025-09-27 19:39:12 +02:00
17 lines
576 B
Text
17 lines
576 B
Text
--echo #
|
|
--echo # MDEV-36087 MariDB 11.7.2 - /usr/sbin/mariadbd got signal 11
|
|
--echo #
|
|
|
|
# This test simulates the scenario in MDEV-36087 by dropping the
|
|
# column added in MDEV-34716
|
|
|
|
create server s foreign data wrapper mysql options (host "127.0.0.1", database "test", user "root", port 3306);
|
|
show create server s;
|
|
alter table mysql.servers drop column Options;
|
|
show create server s;
|
|
--source include/restart_mysqld.inc
|
|
show create server s;
|
|
ALTER TABLE mysql.servers
|
|
ADD Options JSON NOT NULL DEFAULT '{}' CHECK(JSON_VALID(Options));
|
|
show create server s;
|
|
drop server s;
|