adding test scripts
[csql.git] / test / cache / Gateway / test008.ksh
blob138fd4506fd52169e5baa63664ffcc244397c9f5
1 #!/bin/ksh
3 # 8.Cached table there in csql, but join with another cached table in csql. It should get the correct value from mysql.
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 if [ $DSN = "oracle" ]
48 then
49 isql $DS < $REL_PATH/orainputt2.oracle > /dev/null 2>&1
50 else
51 isql $DS < $REL_PATH/mysqlinputtest8.sql > /dev/null 2>&1
53 # edit /tmp/csql/csqltable.conf
54 rm -f /tmp/csql/csqltable.conf
55 touch /tmp/csql/csqltable.conf
57 $CSQL_INSTALL_ROOT/bin/csqlserver >/dev/null 2>&1 &
58 pid=$!
59 sleep 5
61 for a in 1 2
63 $CSQL_INSTALL_ROOT/bin/cachetable -t t$a -d $DSN
64 if [ $? -ne 0 ]
65 then
66 kill -9 $pid
67 ipcrm -M 1199 -M 2277
68 exit 3;
70 done >> /tmp/csql/csqltable.conf
72 $CSQL_INSTALL_ROOT/bin/csql -g -s $REL_PATH/join.sql
74 isql $DS < $REL_PATH/dropt1t2t3.sql > /dev/null 2>&1
75 kill -9 $pid
76 ipcrm -M 1199 -M 2277
77 rm -f /tmp/csql/csqltable.conf
78 touch /tmp/csql/csqltable.conf
79 exit 0;