mariadb/mysql-test/suite/perfschema/r/pfs_upgrade_proc.result
2020-03-14 09:51:36 +01:00

9 lines
367 B
Text

# Testing mysql_upgrade with PROCEDURE performance_schema.user_proc
create procedure test.user_proc()
select "Not supposed to be here";
update mysql.proc set db='performance_schema' where name='user_proc';
select name from mysql.proc where db='performance_schema';
name
user_proc
update mysql.proc set db='test' where name='user_proc';
drop procedure test.user_proc;