1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

Generate warning in ha_delete_table() if files is missing in handler

This commit is contained in:
monty@mysql.com
2005-02-21 20:41:48 +02:00
parent 4feff48d9d
commit f5acf0be01
8 changed files with 108 additions and 26 deletions

View File

@ -6,7 +6,9 @@ drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
start slave;
create table t1 (a int) engine=myisam;
flush tables;
drop table t1;
drop table if exists t1;
Warnings:
Error 2 Can't find file: 't1' (errno: 2)
create table t1 (a int, unique(a)) engine=myisam;
set sql_log_bin=0;
insert into t1 values(2);