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
/
testnw012.ksh
blob
da1b6dd2c7decf20c0f487ed8689eb20230f00e4
1
#!/bin/ksh
2
# Test Case
3
# check all Predicates with SMALLINT(short int) 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}
/
datatype3.sql
13
if
[
$?
-ne
0
]
14
then
15
exit
1
;
16
fi
17
exit
0
;