adding test scripts
[csql.git] / test / tools / csql / test142.ksh
blob1b38322f64eb4c8e11ef0d24230e45077f1e7727
1 #!/bin/sh
2 # Test more than 1 primary key in single table
5 QUITFILE=${PWD}/tools/csql/quit.sql
6 REL_PATH=.
7 if [ -s "$QUITFILE" ]
8 then
9 REL_PATH=`pwd`/tools/csql
12 $CSQL_INSTALL_ROOT/bin/csql -u root -p manager -s ${REL_PATH}/multiple_primarykey.sql
13 if [ $? -ne 0 ]
14 then
15 $CSQL_INSTALL_ROOT/bin/csql -u root -p manager -s ${REL_PATH}/drop.sql
16 exit 1;
19 exit 0;