~vkolesnikov/pbxt/pbxt-preload-test-bug

« back to all changes in this revision

Viewing changes to pbxt/mysql-test-update/mysql-test/t/pbxt_ref_int.test

  • Committer: paul-mccullagh
  • Date: 2008-03-10 11:36:34 UTC
  • Revision ID: paul-mccullagh-417ebf175a9c8ee6e5b3777d9e2398e1fb197391
Implemented full durability

Show diffs side-by-side

added added

removed removed

Lines of Context:
93
93
insert child_child values(5000, 400);
94
94
 
95
95
select * from parent;
96
 
select * from child;
 
96
select * from child order by id;
97
97
select * from child_child;
98
98
 
99
99
update parent set id = 3 where id = 1;
100
100
 
101
101
select * from parent;
102
 
select * from child;
 
102
select * from child order by id;
103
103
 
104
104
delete from parent where id = 2;
105
105
 
106
106
select * from parent;
107
 
select * from child;
 
107
select * from child order by id;
108
108
select * from child_child;
109
109
 
110
110
--disable_warnings
134
134
delete from parent where id = 1;
135
135
 
136
136
select * from parent;
137
 
select * from child;
 
137
select * from child order by id;
138
138
 
139
139
delete from child;
140
140
 
151
151
insert child values(2000, 2);
152
152
 
153
153
select * from parent;
154
 
select * from child;
 
154
select * from child order by id;
155
155
 
156
156
show create table parent;
157
157
 
192
192
select * from parent order by id;
193
193
select * from child order by id;
194
194
 
195
 
alter table child drop column parent_id, add column parent_id int;
 
195
alter table child drop key par_ind, drop column parent_id, add column parent_id int, add key par_ind (parent_id);
196
196
 
197
197
insert child (id, parent_id, c1) values(500, 1, "asd");
198
198