code reorg for Transactionw!
[csql.git] / test / sql / Join / test064.ksh
blobc10cc9a9e196f966c8a0d0c75e84fdd7d762ecf2
1 #!/bin/ksh
3 QUITFILE=${PWD}/sql/Join/quit.sql
4 REL_PATH=.
5 if [ -s "$QUITFILE" ]
6 then
7 REL_PATH=`pwd`/sql/Join
8 fi
10 $CSQL_INSTALL_ROOT/bin/csql -s $REL_PATH/noindex_t1_t2_t3.sql
11 if [ $? -ne 0 ]
12 then
13 exit 1;
15 $CSQL_INSTALL_ROOT/bin/csql -s $REL_PATH/treeon_t1f1_t2f1_t3f1_hashon_t1f2_t2f1_t3f1.sql
16 if [ $? -ne 0 ]
17 then
18 exit 2;
20 $CSQL_INSTALL_ROOT/bin/csql -s $REL_PATH/insert_t1_t2_t3.sql
21 if [ $? -ne 0 ]
22 then
23 exit 3;
25 $CSQL_INSTALL_ROOT/bin/csql -s $REL_PATH/crosjoin_t1_t2_t3.sql
26 if [ $? -ne 0 ]
27 then
28 exit 4;
30 $CSQL_INSTALL_ROOT/bin/csql -s $REL_PATH/drop_t1_t2_t3.sql
31 if [ $? -ne 0 ]
32 then
33 exit 5;