The expected file was wrong earlier
[csql.git] / test / tools / csql / test066.ksh
blob9fc2a23ad73ac893320ccdbb596a1cfeed61a1f6
1 #!/bin/sh
2 #Test case
3 #autocommit true and disconnect
4 #set the autocommit mode to true and then call insert and disconnect from csql. then reconnect and check whether the records is inserted.
6 QUITFILE=${PWD}/tools/csql/quit.sql
7 REL_PATH=.
8 if [ -s "$QUITFILE" ]
9 then
10 REL_PATH=`pwd`/tools/csql
13 $CSQL_INSTALL_ROOT/bin/csql -u root -p manager -s ${REL_PATH}/tree21.sql
14 if [ $? -ne 0 ]
15 then
16 exit 1;
18 $CSQL_INSTALL_ROOT/bin/csql -u root -p manager -s ${REL_PATH}/selectstar.sql
19 $CSQL_INSTALL_ROOT/bin/csql -u root -p manager -s ${REL_PATH}/drop.sql
20 if [ $? -ne 0 ]
21 then
22 exit 1;