adding test scripts
[csql.git] / test / sql / Datatype / varchar_compindex.sql
blob81f4b5593894d8ca4cefaa81dbd9ed795cce824a
1 echo Create table t1(f1 tinyint, f2 smallint, f3 int, f4 bigint, f5 char(10), f6 varchar(10), f7 float, f8 double,f9 Date, f10 Time, f11 Timestamp);
2 Create table t1(f1 tinyint, f2 smallint, f3 int, f4 bigint, f5 char(10), f6 varchar(10), f7 float, f8 double,f9 Date, f10 Time, f11 Timestamp);
3 echo create index hashidxtinyvar on t1(f1, f6);
4 create index hashidxtinyvar on t1(f1, f6);
5 echo create index hashidxsmallvar on t1(f2, f6);
6 create index hashidxsmallvar on t1(f2, f6);
7 echo create index hashidxvarint on t1(f6, f3);
8 create index hashidxvarint on t1(f6, f3);
9 echo create index hashidxvarbig on t1(f6, f4);
10 create index hashidxvarbig on t1(f6, f4);
11 echo create index hashidxcharvar on t1(f5, f6);
12 create index hashidxcharvar on t1(f5, f6);
13 echo create index hashidxvardate on t1(f6, f9);
14 create index hashidxvardate on t1(f6, f9);
15 echo create index hashidxvartime on t1(f6, f10);
16 create index hashidxvartime on t1(f6, f10);
17 echo create index hashidxvarfloat on t1(f6, f7);
18 create index hashidxvarfloat on t1(f6, f7);
19 echo create index hashidxvardouble on t1(f6, f8);
20 create index hashidxvardouble on t1(f6, f8);
21 echo create index hashidxvartimestamp on t1(f6, f11);
22 create index hashidxvartimestamp on t1(f6, f11);