common.h added to support AbsSqlConnection and AbsSqlStatement creations
[csql.git] / test / cache / Gateway / test008.ksh
blob85f90111dca4ed3e7c7f9ab8b1dd640b1552729c
1 #!/bin/sh
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 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 rm -f /tmp/csql.conf
15 cp $REL_PATH/csql.conf /tmp
16 export CSQL_CONFIG_FILE=/tmp/csql.conf
17 echo DSN=$DSN >>$CSQL_CONFIG_FILE
19 isql $DSN < $REL_PATH/mysqlinputtest5.sql > /dev/null 2>&1
20 if [ $? -ne 0 ]
21 then
22 echo "DSN is not set for target db"
23 exit 1
26 isql $DSN < $REL_PATH/mysqlinputtest8.sql > /dev/null 2>&1
28 # edit /tmp/csql/csqltable.conf
29 rm -f /tmp/csql/csqltable.conf /tmp/csql/csql.db
30 touch /tmp/csql/csqltable.conf /tmp/csql/csql.db
31 for (( a=1; a<3; a++ ))
33 echo "1:t$a NULL NULL NULL"
34 done >> /tmp/csql/csqltable.conf
36 $CSQL_INSTALL_ROOT/bin/csqlserver -c >/dev/null 2>&1 &
37 pid=$!
38 sleep 5
40 $CSQL_INSTALL_ROOT/bin/csql -g -s $REL_PATH/join.sql
42 isql $DSN < $REL_PATH/dropall.sql > /dev/null 2>&1
43 kill -9 $pid
44 ipcrm -M 1199 -M 2277
45 rm -f /tmp/csql/csqltable.conf /tmp/csql/csql.db
46 touch /tmp/csql/csqltable.conf /tmp/csql/csql.db
47 exit 0;