summaryrefslogtreecommitdiffstats
path: root/mysql-test/suite/perfschema/r/pfs_upgrade_proc.result
blob: 9452ec866f76d051e4bbf9bcdacf4f2a6d439aa8 (plain)
1
2
3
4
5
6
7
8
9
# 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;