adding DSN to csql.conf based on the cache test mode
[csql.git] / test / cache / CacheTable / test003.ksh
blob7eb16beffce3b3e4a2324def9ca843bf0ef03ba5
1 #!/bin/sh
2 # Test Case
4 # 3.create table, load with no definition option. should succeed and csqldump should display the records.
6 #Run this test only under csql/test or on this directory.
7 #Otherwise, it may fail
9 input=${PWD}/cache/CacheTable/inputtest4.sql
10 REL_PATH=.
11 if [ -s "$input" ]
12 then
13 REL_PATH=${PWD}/cache/CacheTable
16 cp $CSQL_CONFIG_FILE /tmp/csql.conf
17 echo DSN=$DSN >>$CSQL_CONFIG_FILE
18 isql $DSN < ${REL_PATH}/inputtest4.sql >/dev/null 2>&1
19 $CSQL_INSTALL_ROOT/bin/csql -s $REL_PATH/csqlinput.sql > /dev/null 2>&1
20 if [ $? -ne 0 ]
21 then
22 cp /tmp/csql.conf $CSQL_CONFIG_FILE
23 exit 1;
26 rm -f /tmp/csql/csqltable.conf /tmp/csql/csql.db
27 touch /tmp/csql/csqltable.conf /tmp/csql/csql.db
29 $CSQL_INSTALL_ROOT/bin/cachetable -t t1 -s > /dev/null 2>&1
30 if [ $? -ne 0 ]
31 then
32 cp /tmp/csql.conf $CSQL_CONFIG_FILE
33 exit 2;
36 rm -f /tmp/csql/csqltable.conf /tmp/csql/csql.db
37 touch /tmp/csql/csqltable.conf /tmp/csql/csql.db
39 $CSQL_INSTALL_ROOT/bin/csqldump
40 if [ $? -ne 0 ]
41 then
42 cp /tmp/csql.conf $CSQL_CONFIG_FILE
43 exit 3;
45 $CSQL_INSTALL_ROOT/bin/csql -s ${REL_PATH}/drop.sql > /dev/null 2>&1
46 isql $DSN < ${REL_PATH}/drop.sql >/dev/null 2>&1
47 rm -f /tmp/csql/csqltable.conf /tmp/csql/csql.db
48 touch /tmp/csql/csqltable.conf /tmp/csql/csql.db
49 cp /tmp/csql.conf $CSQL_CONFIG_FILE
50 exit 0;