adding test scripts
[csql.git] / test / tools / csql / bucketsize.sql
blob6200e4d6ee6ed63995f03bc45d4ccf2dc95fb8c2
1 echo create table t1 (f1 int,f2 char(10),f3 int,f4 int,f5 bigint,primary key(f1) size 1500);
2 create table t1 (f1 int,f2 char(10),f3 int,f4 int,f5 bigint,primary key(f1) size 1500);
3 echo create index ind1 on t1(f2) hash size 750;
4 create index ind1 on t1(f2) hash size 750;
5 echo create index ind2 on t1(f3) tree size 10000;
6 create index ind2 on t1(f3) tree size 10000;
7 echo create table t2 (f1 int,f2 char(10),f3 int,f4 int,f5 bigint,primary key(f2) size 1500);
8 create table t2 (f1 int,f2 char(10),f3 int,f4 int,f5 bigint,primary key(f2) size 1500);
9 echo create index ind3 on t2(f1) hash unique size 750;
10 create index ind3 on t2(f1) hash unique size 750;