added tests for temporary tables

This commit is contained in:
Markus Makela
2014-08-31 19:30:00 +03:00
parent 45faa38877
commit ecc89a823b
2 changed files with 27 additions and 4 deletions

View File

@ -0,0 +1,5 @@
use test;
drop table if exists t1;
create temporary table t1 (id integer);
insert into t1 values(1);
select id from t1;