2 --eval create
table t1 (a $type1, b $type2, c $type3, d
int, primary key(a,c), unique(c,b)) engine ndb
3 --exec $NDB_MGM --no-defaults --ndb-connectstring="$NDB_CONNECTSTRING" -e "all error 8072" >> $NDB_TOOLS_OUTPUT
5 --echo
# verify tc select on insert using simple int key
12 --eval insert into t1 values (
"$i",
"$j",0,0)
19 --echo
# verify tc select on select using simple pk int key
25 --eval select * from t1 where a=
"$i" and c=
"0"
32 --echo # verify tc select on select
using simple unique
int key
38 --eval select * from t1 where b=
"$i" and c=
"0"
44 --echo # verify tc select on update
using simple pk
int key
50 --eval update t1
set d=
"10" where a=
"$i" and c=
"0"
56 --echo # verify tc select on update
using simple unique
int key
62 --eval update t1
set d=11 where b=
"$i" and c=
"0"
68 --echo # verify tc select on
delete using simple pk
int key
74 --eval
delete from t1 where a=
"$i" and c=
"0"
80 --echo # verify tc select on
delete using simple unique
int key
86 --eval
delete from t1 where b=
"$i" and c=
"0"
93 --exec $NDB_MGM --no-defaults --ndb-connectstring=
"$NDB_CONNECTSTRING" -e
"all error 0" >> $NDB_TOOLS_OUTPUT