adding test scripts
[csql.git] / test / sql / Join / noindex_t1_t2.sql
blob50093c50a140da8ad3b6610eee163ae6fb41753f
1 echo create table t1(f1 int,f2 int);
2 create table t1(f1 int,f2 int);
3 echo create table t2(f1 int,f2 int);
4 create table t2(f1 int,f2 int);
5 echo insert into t1 values(101,100);
6 insert into t1 values(101,100);
7 echo insert into t1 values(303,333);
8 insert into t1 values(303,333);
9 echo insert into t1 values(505,555);
10 insert into t1 values(505,555);
11 echo insert into t2 values(505,100);
12 insert into t2 values(505,100);
13 echo insert into t2 values(100,101);
14 insert into t2 values(100,101);
15 echo insert into t2 values(404,444);
16 insert into t2 values(404,444);
17 echo insert into t2 values(303,300);
18 insert into t2 values(303,300);
19 echo insert into t2 values(101,110);
20 insert into t2 values(101,110);