mirror of
https://github.com/MariaDB/server.git
synced 2025-07-27 18:02:13 +03:00
Merge 10.2 into 10.3
This commit is contained in:
@ -171,6 +171,13 @@ create database mysqltest1;
|
||||
create procedure mysqltest1.foo() select "foo";
|
||||
update mysql.proc set name='' where db='mysqltest1';
|
||||
drop database mysqltest1;
|
||||
create procedure p1() set @foo = 10;
|
||||
alter table mysql.proc drop primary key;
|
||||
drop procedure p1;
|
||||
ERROR HY000: Cannot load from mysql.proc. The table is probably corrupted
|
||||
alter table mysql.proc add primary key (db,name,type);
|
||||
drop procedure p1;
|
||||
# Start of 10.3 tests
|
||||
#
|
||||
# MDEV-15444 Querying I_S.PARAMETERS can crash with a corrupted mysql.proc
|
||||
#
|
||||
|
Reference in New Issue
Block a user