mirror of
https://github.com/MariaDB/server.git
synced 2025-12-24 11:21:21 +03:00
fixed bug in truncating temp tables
fixed compilation problem on FreeBSD added test for truncating temporary tables mysql-test/r/truncate.result: truncate test mysql-test/t/truncate.test: truncate test update mysys/safemalloc.c: fixed FreeBSD compilation problem sql/sql_delete.cc: fixed bug in truncating temporary tables
This commit is contained in:
@@ -13,3 +13,8 @@ drop table t1;
|
||||
# The following should fail
|
||||
--error 1146
|
||||
select count(*) from t1;
|
||||
create temporary table t1 (n int);
|
||||
insert into t1 values (1),(2),(3);
|
||||
truncate table t1;
|
||||
select * from t1;
|
||||
drop table t1;
|
||||
|
||||
Reference in New Issue
Block a user