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

fixed bug in truncating nonexisting table, found by Carsten

This commit is contained in:
bell@sanja.is.com.ua
2002-08-05 11:45:39 +03:00
parent 97e34fe2ec
commit 9c49005ff5
3 changed files with 6 additions and 1 deletions

View File

@@ -18,3 +18,5 @@ insert into t1 values (1),(2),(3);
truncate table t1;
select * from t1;
drop table t1;
--error 1146
truncate non_existing_table;