*** empty log message ***
[csql.git] / test / cache / CacheVerify / test003.ksh
blob1a0668471ae51b8737bd2b656880e9dd5141282d
1 #!/bin/sh
2 # Test Case
3 # 3. Run cacheverify on a non existing table.
4 # It should give an error saying the table is not present.
6 $CSQL_INSTALL_ROOT/bin/cacheverify -t not_exists > /dev/null 2>&1
7 if [ $? -eq 0 ]
8 then
9 exit 1;
12 exit 0;