File Removed
[csql.git] / test / tools / csql / test069.ksh
blob8ae5f9205aaf6ebae1469c83e8d2a97c6069eedc
1 #!/bin/sh
2 #Test case
3 #utocommit mode to true and commit
4 #set the autocommit mode to true and then call insert and commit from csql. then check that the inserted record is present and the commit should not give error message.
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}/tree24.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;