1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Modified test case for bug #12517

This commit is contained in:
SergeyV@selena.
2005-09-08 12:09:30 +04:00
parent e0e235c322
commit 668f0e10fa
2 changed files with 12 additions and 22 deletions

View File

@ -1,3 +1,4 @@
drop table if exists t1,t2;
show tables;
Tables_in_mysql
columns_priv
@ -65,19 +66,8 @@ show tables;
Tables_in_test
delete from mysql.user where user=_binary"test";
flush privileges;
use test;
drop table if exists t1;
Warnings:
Note 1051 Unknown table 't1'
create table t1 (id integer not null auto_increment primary key);
drop table if exists t2;
Warnings:
Note 1051 Unknown table 't2'
create temporary table t2(id integer not null auto_increment primary key);
set @id := 1;
delete from t1 where id like @id;
use test;
drop table if exists t2;
Warnings:
Note 1051 Unknown table 't2'
drop table if exists t1;
drop table t1;