64 bit build fix
[csql.git] / test / cache / FailOver / test008c.ksh
blob100d92d9cd54fd2bfd4a895dd00da28a473a3753
1 #!/bin/ksh
3 # 8c. After connect, prepare, execute, CSQL goes down.fetch() should return records from MySQL for cached and MySQL table.
4 # fetch() on csql non-cached table will fail.
6 #Run this test only under csql/test or on this directory.
7 #Otherwise, it may fail
8 CSQL_CONF=${PWD}/cache/FailOver/csql.conf
9 input=${PWD}/cache/FailOver/csqlinputt3.sql
10 REL_PATH=.
11 if [ -s "$input" -a -s "$CSQL_CONF" ]
12 then
13 REL_PATH=${PWD}/cache/FailOver
16 rm -f /tmp/csql.conf
17 cp $REL_PATH/csql.conf /tmp
18 export CSQL_CONFIG_FILE=/tmp/csql.conf
20 echo DSN=$DSN >>$CSQL_CONFIG_FILE
21 DS="$DSN $DBUSER $PASSWORD"
22 rm -f /tmp/csql/csqlds.conf
23 touch /tmp/csql/csqlds.conf
24 $CSQL_INSTALL_ROOT/bin/csqlds -U $DBUSER -P $PASSWORD -D $DSN -N $TDB -a
25 if [ $? -ne 0 ]
26 then
27 exit 1;
31 isql $DS < $REL_PATH/dropt1t2.sql >/dev/null 2>&1
32 if [ $? -ne 0 ]
33 then
34 exit 2;
37 if [ $DSN = "oracle" ]
38 then
39 isql $DS < $REL_PATH/orainputt1.oracle >/dev/null 2>&1
40 elif [ $DSN = "sybase" ]
41 then
42 isql $DS < $REL_PATH/sybaseinputtest1.sql >/dev/null 2>&1
43 elif [ $DSN = "db2" ]
44 then
45 isql $DS < $REL_PATH/db2inputtest1.sql >/dev/null 2>&1
46 else
47 isql $DS < $REL_PATH/mysqlinputtest1.sql >/dev/null 2>&1
50 if [ $? -ne 0 ]
51 then
52 exit 3;
55 echo "table t1(to be cached) inserted into target db"
56 # edit /tmp/csql/csqltable.conf
57 rm -f /tmp/csql/csqltable.conf
58 touch /tmp/csql/csqltable.conf
60 $CSQL_INSTALL_ROOT/bin/csqlserver >/dev/null 2>&1 &
61 pid=$!
62 sleep 5
63 $CSQL_INSTALL_ROOT/bin/cachetable -t t1 -d $DSN
64 if [ $? -ne 0 ]
65 then
66 kill -9 $pid
67 ipcrm -M 1199 -M 2277
68 exit 4;
71 echo "table t1 cached into csql"
73 if [ $DSN = "oracle" ]
74 then
75 isql $DS < $REL_PATH/orainputt2.oracle >/dev/null 2>&1
76 elif [ $DSN = "sybase" ]
77 then
78 isql $DS < $REL_PATH/sybaseinputtest2.sql >/dev/null 2>&1
79 elif [ $DSN = "db2" ]
80 then
81 isql $DS < $REL_PATH/db2inputtest2.sql >/dev/null 2>&1
82 else
83 isql $DS < $REL_PATH/mysqlinputtest2.sql >/dev/null 2>&1
86 if [ $? -ne 0 ]
87 then
88 exit 5;
91 echo "table t2(not cached) inserted into target db"
92 if [ $DSN = "oracle" ]
93 then
94 $CSQL_INSTALL_ROOT/bin/csql -g -s $REL_PATH/orainputt3.oracle >/dev/null 2>&1
95 else
96 $CSQL_INSTALL_ROOT/bin/csql -g -s $REL_PATH/csqlinputt3.sql >/dev/null 2>&1
98 echo "table t3 inserted into csql db"
100 if [ $DSN = "oracle" ]
101 then
102 ${REL_PATH}/updateexeccsqldownora &
103 else
104 ${REL_PATH}/updateexeccsqldown &
106 bgproc=$!
107 kill -9 $pid
108 ipcrm -M 1199 -M 2277
109 echo "csql server is down"
110 wait $bgproc
111 isql $DS < $REL_PATH/dropt1t2.sql >/dev/null 2>&1
112 if [ $? -ne 0 ]
113 then
114 exit 6;
117 rm -f /tmp/csql/csqltable.conf
118 touch /tmp/csql/csqltable.conf
119 exit 0;