mirror of
https://github.com/MariaDB/server.git
synced 2026-01-06 05:22:24 +03:00
cleanup: pfs_upgrade* tests
This commit is contained in:
@@ -1,4 +1,3 @@
|
||||
drop event if exists test.user_event;
|
||||
"Testing mysql_upgrade with EVENT performance_schema.user_event"
|
||||
create event test.user_event on schedule every 1 day do
|
||||
select "not supposed to be here";
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
drop function if exists test.user_func;
|
||||
"Testing mysql_upgrade with FUNCTION performance_schema.user_func"
|
||||
create function test.user_func() returns integer
|
||||
return 0;
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
drop procedure if exists test.user_proc;
|
||||
"Testing mysql_upgrade with PROCEDURE performance_schema.user_proc"
|
||||
create procedure test.user_proc()
|
||||
select "Not supposed to be here";
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
drop table if exists test.user_table;
|
||||
"Testing mysql_upgrade with TABLE performance_schema.user_table"
|
||||
create table test.user_table(a int);
|
||||
use performance_schema;
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
drop view if exists test.user_view;
|
||||
"Testing mysql_upgrade with VIEW performance_schema.user_view"
|
||||
create view test.user_view as select "Not supposed to be here";
|
||||
use performance_schema;
|
||||
|
||||
Reference in New Issue
Block a user