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
/
exp.test121.ksh
blob
433438ea10c41abb88903a312263e0146a57d7e2
1
echo
CREATE TABLE t1
(
f1 int
,
f2 int
,
f3 int
,
primary key
(
f1
,
f2
));
2
Statement Executed
3
echo
CREATE TABLE t2
(
f1 int
,
f2 int
,
f3 int
,
foreign key
(
f1
)
references t1
(
f1
));
4
Statement execute failed with error
-4
5
Statement Executed
6
Statement Executed