doxygen documentation
[csql.git] / test / tools / csql / testnw005.ksh
blob6c1cb0955e9751d4a5b607b72d7144d6947348ae
1 #!/bin/ksh
2 # Test Case
3 # Create table with all Datatypes supported by CSQL
4 # Test All Basic operations(create,insert,update,select)
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 -o 4 -u root -p manager -s ${REL_PATH}/alldatatype_alloperation.sql
14 if [ $? -ne 0 ]
15 then
16 exit 1;
18 exit 0;