ndb_transaction.result 4.62 KB
Newer Older
1
DROP TABLE IF EXISTS t1,t2,t3,t4,t5,t6,t7;
2
drop database if exists mysqltest;
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209
CREATE TABLE t1 (
pk1 INT NOT NULL PRIMARY KEY,
attr1 INT NOT NULL
) ENGINE=ndbcluster;
begin;
insert into t1 values(1,1);
insert into t1 values(2,2);
select count(*) from t1;
count(*)
2
select * from t1 where pk1 = 1;
pk1	attr1
1	1
select t1.attr1 from t1, t1 as t1x where t1.pk1 = t1x.pk1 + 1;
attr1
2
rollback;
select count(*) from t1;
count(*)
0
select * from t1 where pk1 = 1;
pk1	attr1
select t1.attr1 from t1, t1 as t1x where t1.pk1 = t1x.pk1 + 1;
attr1
begin;
insert into t1 values(1,1);
insert into t1 values(2,2);
commit;
select count(*) from t1;
count(*)
2
select * from t1 where pk1 = 1;
pk1	attr1
1	1
select t1.attr1 from t1, t1 as t1x where t1.pk1 = t1x.pk1 + 1;
attr1
2
begin;
update t1 set attr1 = attr1 * 2;
select count(*) from t1;
count(*)
2
select * from t1 where pk1 = 1;
pk1	attr1
1	2
select * from t1, t1 as t1x where t1x.attr1 = t1.attr1 - 2;
pk1	attr1	pk1	attr1
2	4	1	2
rollback;
select count(*) from t1;
count(*)
2
select * from t1 where pk1 = 1;
pk1	attr1
1	1
select * from t1, t1 as t1x where t1x.attr1 = t1.attr1 - 2;
pk1	attr1	pk1	attr1
begin;
update t1 set attr1 = attr1 * 2;
commit;
select count(*) from t1;
count(*)
2
select * from t1 where pk1 = 1;
pk1	attr1
1	2
select * from t1, t1 as t1x where t1x.attr1 = t1.attr1 - 2;
pk1	attr1	pk1	attr1
2	4	1	2
begin;
delete from t1 where attr1 = 2;
select count(*) from t1;
count(*)
1
select * from t1 where pk1 = 1;
pk1	attr1
select * from t1, t1 as t1x where t1x.attr1 = t1.attr1 - 2;
pk1	attr1	pk1	attr1
rollback;
select count(*) from t1;
count(*)
2
select * from t1 where pk1 = 1;
pk1	attr1
1	2
select * from t1, t1 as t1x where t1x.attr1 = t1.attr1 - 2;
pk1	attr1	pk1	attr1
2	4	1	2
begin;
delete from t1 where attr1 = 2;
commit;
select count(*) from t1;
count(*)
1
select * from t1 where pk1 = 1;
pk1	attr1
select * from t1, t1 as t1x where t1x.attr1 = t1.attr1 - 2;
pk1	attr1	pk1	attr1
DROP TABLE t1;
CREATE TABLE t1 (id INT, id2 int) engine=ndbcluster;
begin;
insert into t1 values(1,1);
insert into t1 values(2,2);
select sum(id) from t1;
sum(id)
3
select * from t1 where id = 1;
id	id2
1	1
select t1.id from t1, t1 as t1x where t1.id2 = t1x.id2 + 1;
id
2
rollback;
select sum(id) from t1;
sum(id)
NULL
select * from t1 where id = 1;
id	id2
select t1.id from t1, t1 as t1x where t1.id2 = t1x.id2 + 1;
id
begin;
insert into t1 values(1,1);
insert into t1 values(2,2);
commit;
select sum(id) from t1;
sum(id)
3
select * from t1 where id = 1;
id	id2
1	1
select t1.id from t1, t1 as t1x where t1.id2 = t1x.id2 + 1;
id
2
begin;
update t1 set id = id * 2;
select sum(id) from t1;
sum(id)
6
select * from t1 where id = 2;
id	id2
2	1
select * from t1, t1 as t1x where t1x.id = t1.id - 2;
id	id2	id	id2
4	2	2	1
rollback;
select sum(id) from t1;
sum(id)
3
select * from t1 where id = 2;
id	id2
2	2
select * from t1, t1 as t1x where t1x.id = t1.id - 2;
id	id2	id	id2
begin;
update t1 set id = id * 2;
commit;
select sum(id) from t1;
sum(id)
6
select * from t1 where id = 2;
id	id2
2	1
select * from t1, t1 as t1x where t1x.id = t1.id - 2;
id	id2	id	id2
4	2	2	1
DROP TABLE t1;
CREATE TABLE t2 (
a bigint unsigned NOT NULL PRIMARY KEY,
b int unsigned not null,
c int unsigned
) engine=ndbcluster;
CREATE TABLE t3 (
a bigint unsigned NOT NULL,
b bigint unsigned not null,
c bigint unsigned,
PRIMARY KEY(a)
) engine=ndbcluster;
CREATE TABLE t4 (
a bigint unsigned NOT NULL,
b bigint unsigned not null,
c bigint unsigned NOT NULL,
d int unsigned,
PRIMARY KEY(a, b, c)
) engine=ndbcluster;
select count(*) from t2;
count(*)
0
select count(*) from t3;
count(*)
0
select count(*) from t4;
count(*)
0
select count(*) from t2;
count(*)
100
select count(*) from t3;
count(*)
100
select count(*) from t4;
count(*)
100
begin;
begin;
drop table t2;
drop table t3;
drop table t4;
210 211 212 213
CREATE TABLE t1 (
pk1 INT NOT NULL PRIMARY KEY,
attr1 INT NOT NULL
) ENGINE=ndbcluster;
214 215
create database mysqltest;
use mysqltest;
216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256
CREATE TABLE t2 (
a bigint unsigned NOT NULL PRIMARY KEY,
b int unsigned not null,
c int unsigned
) engine=ndbcluster;
begin;
insert into test.t1 values(1,1);
insert into t2 values(1,1,1);
insert into test.t1 values(2,2);
insert into t2 values(2,2,2);
select count(*) from test.t1;
count(*)
2
select count(*) from t2;
count(*)
2
select * from test.t1 where pk1 = 1;
pk1	attr1
1	1
select * from t2 where a = 1;
a	b	c
1	1	1
select test.t1.attr1 
from test.t1, test.t1 as t1x where test.t1.pk1 = t1x.pk1 + 1;
attr1
2
select t2.a 
from t2, t2 as t2x where t2.a = t2x.a + 1;
a
2
select test.t1.pk1, a from test.t1,t2 where b > test.t1.attr1;
pk1	a
1	2
rollback;
select count(*) from test.t1;
count(*)
0
select count(*) from t2;
count(*)
0
drop table test.t1, t2;
257
drop database mysqltest;