MaxScale/server/modules/routing/readwritesplit/test/test_temporary_table.sql
2014-08-31 19:30:00 +03:00

6 lines
120 B
SQL

use test;
drop table if exists t1;
create temporary table t1 (id integer);
insert into t1 values(1);
select id from t1;