*** empty log message ***
[csql.git] / test / cache / CacheVerify / test007.ksh
blob95926604c95ee0fea05cb8ad6ae45444025aa771
1 #!/bin/sh
2 # Test Case
3 # 7. For the above scenario,
4 # delete 3 tuples from csql and
5 # delete 2 tuples from mysql.
6 # Run $ cacheverify -t t1.
7 # The output should display number of records as 7 and 8 for csql and
8 # mysql respectively.
9 # Run $ cacheverify -t t1 -p.
10 # The output should display the primary key field values for missing
11 # records in either of the databases in ascending order.
12 # Run $ cacheverify -t t1 -f.
13 # The output should display the records are consistent for the same
14 # primary key.
16 #Run this test only under csql/test or on this directory.
17 #Otherwise, it may fail
19 input=${PWD}/cache/CacheVerify/csqldelete.sql
20 REL_PATH=.
21 if [ -s "$input" ]
22 then
23 REL_PATH=${PWD}/cache/CacheVerify
26 $CSQL_INSTALL_ROOT/bin/csql -s ${REL_PATH}/csqldelete.sql >/dev/null 2>&1
27 if [ $? -ne 0 ]
28 then
29 exit 1;
32 cp $CSQL_CONFIG_FILE /tmp/csql.conf
33 echo DSN=$DSN >>$CSQL_CONFIG_FILE
34 isql $DSN < ${REL_PATH}/mysqldelete.sql >/dev/null 2>&1
35 if [ $? -ne 0 ]
36 then
37 cp /tmp/csql.conf $CSQL_CONFIG_FILE
38 exit 2;
41 $CSQL_INSTALL_ROOT/bin/cacheverify -t t1
42 if [ $? -ne 0 ]
43 then
44 cp /tmp/csql.conf $CSQL_CONFIG_FILE
45 exit 3;
48 $CSQL_INSTALL_ROOT/bin/cacheverify -t t1 -p
49 if [ $? -ne 0 ]
50 then
51 cp /tmp/csql.conf $CSQL_CONFIG_FILE
52 exit 4;
55 $CSQL_INSTALL_ROOT/bin/cacheverify -t t1 -f
56 if [ $? -ne 0 ]
57 then
58 cp /tmp/csql.conf $CSQL_CONFIG_FILE
59 exit 5;
62 cp /tmp/csql.conf $CSQL_CONFIG_FILE
63 exit 0;