1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +03:00

Move test that requires innodb to sp_trans

This commit is contained in:
unknown
2006-05-18 19:26:53 +02:00
parent 3e12f98aa5
commit c295bd8082
6 changed files with 65 additions and 66 deletions

View File

@@ -526,29 +526,6 @@ drop user user_bug14533@localhost;
drop database db_bug14533;
#
# BUG#7787: Stored procedures: improper warning for "grant execute" statement
#
# Prepare.
CREATE DATABASE db_bug7787;
use db_bug7787;
# Test.
CREATE PROCEDURE p1()
SHOW INNODB STATUS;
GRANT EXECUTE ON PROCEDURE p1 TO user_bug7787@localhost;
# Cleanup.
DROP DATABASE db_bug7787;
drop user user_bug7787@localhost;
use test;
#
# WL#2897: Complete definer support in the stored routines.
#