repo.or.cz
/
csql.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
*** empty log message ***
[csql.git]
/
test
/
tools
/
csql
/
testnw015.ksh
blob
b920de705c239e514cd0aa796ed92887f36885b7
1
#!/bin/ksh
2
# Test Case
3
# check all Predicates with BIGINT (long long) data type
4
#
5
QUITFILE
=
${PWD}
/
tools
/
csql
/
quit.sql
6
REL_PATH
=
.
7
if
[
-s
"
$QUITFILE
"
]
8
then
9
REL_PATH
=
`pwd`
/
tools
/
csql
10
fi
11
12
$CSQL_INSTALL_ROOT
/
bin
/
csql
-o
4
-u
root
-p
manager
-s
${REL_PATH}
/
datatype7.sql
13
if
[
$?
-ne
0
]
14
then
15
exit
1
;
16
fi
17
exit
0
;