*** empty log message ***
[csql.git] / test / cache / Gateway / test007.ksh
blob0a7375dda39016af3b0ce0ed689db1d6d1768a82
1 #!/bin/sh
3 # 7. Cache table in csql from target database. Run any syntactically wrong query. There should be error reported both by csql and gateway.
5 #Run this test only under csql/test or on this directory.
6 #Otherwise, it may fail
7 CSQL_CONF=${PWD}/cache/Gateway/csql.conf
8 input=${PWD}/cache/Gateway/mysqlinputtest1.sql
9 REL_PATH=.
10 if [ -s "$input" -a -s "$CSQL_CONF" ]
11 then
12 REL_PATH=${PWD}/cache/Gateway
14 export CSQL_CONFIG_FILE=$REL_PATH/csql.conf
15 echo DSN=$DSN >> $CSQL_CONFIG_FILE
16 isql $DSN < $REL_PATH/mysqlinputtest5.sql > /dev/null 2>&1
18 # edit /tmp/csql/csqltable.conf
19 rm -f /tmp/csql/csqltable.conf /tmp/csql/csql.db
20 touch /tmp/csql/csqltable.conf /tmp/csql/csql.db
21 for (( a=1; a<2; a++ ))
23 echo "1:t$a NULL NULL NULL"
24 done >> /tmp/csql/csqltable.conf
26 $CSQL_INSTALL_ROOT/bin/csqlserver -c >/dev/null 2>&1 &
27 pid=$!
28 sleep 5
30 $CSQL_INSTALL_ROOT/bin/csql -g -s $REL_PATH/selectstar.sql
31 $CSQL_INSTALL_ROOT/bin/csql -g -s $REL_PATH/syntaxerr.sql
33 isql $DSN < $REL_PATH/dropall.sql > /dev/null 2>&1
34 kill -9 $pid
35 ipcrm -M 1199 -M 2277
36 rm -f /tmp/csql/csqltable.conf /tmp/csql/csql.db
37 touch /tmp/csql/csqltable.conf /tmp/csql/csql.db
38 exit 0;