*** empty log message ***
[csql.git] / test / cache / CacheTable / test005.ksh
blobc3bc2df2850b706a9171da3e0f0c6a0ec9120e50
1 #!/bin/sh
2 # Test Case
4 # 5.create table, load with definition option. should fail.
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
21 rm -f /tmp/csql/csqltable.conf /tmp/csql/csql.db
22 touch /tmp/csql/csqltable.conf /tmp/csql/csql.db
23 ret =0
24 $CSQL_INSTALL_ROOT/bin/cachetable -t t1 > /dev/null 2>&1
25 if [ $? -eq 0 ]
26 then
27 ret=1;
30 rm -f /tmp/csql/csqltable.conf /tmp/csql/csql.db
31 touch /tmp/csql/csqltable.conf /tmp/csql/csql.db
33 isql $DSN < ${REL_PATH}/drop.sql >/dev/null 2>&1
34 $CSQL_INSTALL_ROOT/bin/csql -s $REL_PATH/drop.sql > /dev/null 2>&1
36 cp /tmp/csql.conf $CSQL_CONFIG_FILE
37 exit $ret;