Vasil Dimov wrote:
> On Wed, May 16, 2007 at 16:56:13 +1000, Sunny Bains wrote:
>> Hi,
>>
>> I download the latest bk source today from bk://mysql.bkbits.net/mysql-5.0
>> and one of the tests in mysql-test/ fails.
>>
>> "
>> sp_trans [ pass ] 437
>> strict_autoinc_2innodb [ pass ] 14
>> strict [ fail ]
>>
> [...]
>> Test t/sp_trans doesn't drop the table t2 at its conclusion. Adding
>> the "DROP TABLE" at the start of strict should fix it.
>
> Any idea how this worked till now?
I just looked at a previously installed version of the 5.0 source
and sp_trans explicitly drops the table t2 towards the end.
"
...
# Cleanup
drop function bug13825_0|
drop function bug13825_1|
drop function bug13825_2|
drop function bug13825_3|
drop function bug13825_4|
drop function bug13825_5|
drop procedure bug13825_0|
drop procedure bug13825_1|
drop procedure bug13825_2|
drop table t1, t2|
"
There are no further references (create etc.) to t2 after the above line.
Regards,
-sunny