maria-developers team mailing list archive
-
maria-developers team
-
Mailing list archive
-
Message #03971
Re: Pbxt loses rows
Hi!
>>>>> "Paul" == Paul McCullagh <paul.mccullagh@xxxxxxxxx> writes:
Paul> I suspect that this is not due to rows being lost, but rather to the
Paul> rows not being found for some timing reason.
Paul> But, of course, only debugging will tell...
Paul> We have scheduled time to look at this error.
Any progress ?
One of the most common failures happens in preload.test:
@@ -40,10 +40,10 @@
insert into t1(b) select b from t2;
select count(*) from t1;
count(*)
-33448
+33441
select count(*) from t2;
count(*)
-20672
+20667
flush tables;
flush status;
show status like "key_read%"
The only thing this test does is a lot of repeated:
insert into t2(b) select b from t1;
insert into t1(b) select b from t2;
so it should be relatively easy to repeat.
Regards,
Monty
References