Commit f17f7a43 authored by Sergei Golubchik's avatar Sergei Golubchik

test dropping of a MEMORY table

parent d2b852b4
create table t1 (a int) engine=memory;
drop table t1;
drop table t2;
create table t1 (a int) engine=memory;
let $DATADIR= `select @@datadir`;
copy_file $DATADIR/test/t1.frm $DATADIR/test/t2.frm;
#
# drop a newly created MEMORY table
#
drop table t1;
#
# drop a MEMORY table after a server restart (frm only, nothing in memory)
#
drop table t2;
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment