*** empty log message ***
[csql.git] / test / cache / Gateway / test007.ksh
bloba8cb2137ebc35fb0d68ca86ae2cab1dbd8fa9aa0
1 #!/bin/ksh
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 input=${PWD}/cache/Gateway/mysqlinputtest1.sql
8 REL_PATH=.
9 if [ -s "$input" ]
10 then
11 REL_PATH=${PWD}/cache/Gateway
13 rm -f /tmp/csql.conf
15 cp $REL_PATH/csql.conf /tmp/csql.conf
16 export CSQL_CONFIG_FILE=/tmp/csql.conf
18 echo DSN=$DSN >>$CSQL_CONFIG_FILE
19 DS="$DSN $DBUSER $PASSWORD"
20 rm -f /tmp/csql/csqlds.conf
21 touch /tmp/csql/csqlds.conf
22 $CSQL_INSTALL_ROOT/bin/csqlds -U $DBUSER -P $PASSWORD -D $DSN -N $TDB -a
23 if [ $? -ne 0 ]
24 then
25 exit 1;
28 if [ $DSN = "oracle" ]
29 then
30 isql $DS < $REL_PATH/orainputt1.oracle > /dev/null 2>&1
31 elif [ $DSN = "sybase" ]
32 then
33 isql $DS < $REL_PATH/sybaseinputtest5.sql > /dev/null 2>&1
34 elif [ $DSN = "db2" ]
35 then
36 isql $DS < $REL_PATH/db2inputtest5.sql > /dev/null 2>&1
37 else
38 isql $DS < $REL_PATH/mysqlinputtest5.sql > /dev/null 2>&1
41 if [ $? -ne 0 ]
42 then
43 echo "DSN is not set for target db"
44 exit 1
47 # edit /tmp/csql/csqltable.conf
48 rm -f /tmp/csql/csqltable.conf
49 touch /tmp/csql/csqltable.conf
51 $CSQL_INSTALL_ROOT/bin/csqlserver >/dev/null 2>&1 &
52 pid=$!
53 sleep 5
55 $CSQL_INSTALL_ROOT/bin/cachetable -t t1 -d $DSN
56 if [ $? -ne 0 ]
57 then
58 kill -9 $pid
59 ipcrm -M 1199 -M 2277
60 exit 3;
63 $CSQL_INSTALL_ROOT/bin/csql -g -s $REL_PATH/selectstar.sql
64 $CSQL_INSTALL_ROOT/bin/csql -g -s $REL_PATH/syntaxerr.sql
66 isql $DS < $REL_PATH/dropt1t2.sql > /dev/null 2>&1
67 kill -9 $pid
68 ipcrm -M 1199 -M 2277
69 rm -f /tmp/csql/csqltable.conf
70 touch /tmp/csql/csqltable.conf
71 exit 0;