test scripts for the module
[csql.git] / test / cache / CacheVerify / test007.ksh
blob38f9e39c026cb12397065e6df0ba9ca8aee18409
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 isql myodbc3 < ${REL_PATH}/mysqldelete.sql >/dev/null 2>&1
33 if [ $? -ne 0 ]
34 then
35 exit 2;
38 $CSQL_INSTALL_ROOT/bin/cacheverify -t t1
39 if [ $? -ne 0 ]
40 then
41 exit 3;
44 $CSQL_INSTALL_ROOT/bin/cacheverify -t t1 -p
45 if [ $? -ne 0 ]
46 then
47 exit 4;
50 $CSQL_INSTALL_ROOT/bin/cacheverify -t t1 -f
51 if [ $? -ne 0 ]
52 then
53 exit 5;
56 exit 0;