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
error code changes in exp file
[csql.git]
/
test
/
tools
/
csql
/
test092.ksh
blob
ba4520dde60bc54a35eeb97ebadb9119b267eaae
1
#!/bin/ksh
2
# Test Case
3
# auto_increment key test
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
-u
root
-p
manager
-s
${REL_PATH}
/
auto_increment.sql
13
if
[
$?
-ne
0
]
14
then
15
exit
1
;
16
fi
17