lp:~laurynas-biveinis/drizzle/bug911948

Created by Laurynas Biveinis and last modified
Get this branch:
bzr branch lp:~laurynas-biveinis/drizzle/bug911948
Only Laurynas Biveinis can upload to this branch. If you are Laurynas Biveinis please log in for upload directions.

Branch merges

Related bugs

Related blueprints

Branch information

Owner:
Laurynas Biveinis
Project:
Drizzle
Status:
Merged

Recent revisions

2499. By Laurynas Biveinis

Fix bug 911948: a typo in assertion causing false positive failure
with log > 4GB.

The typo was introduced while porting from Percona Server XtraDB: the
original code was

 if (sizeof(ulint) == 4) {
 ut_a(offset < (((ib_int64_t) 1) << 32)); /* offset must be < 4 GB */
 }

which got ported as

 ut_a((sizeof(ulint) == 4) || (offset < (((ib_int64_t) 1) << 32)));

while it should have been

 ut_a((sizeof(ulint) != 4) || (offset < (((ib_int64_t) 1) << 32)));

2491. By Patrick Crews

Tagged 2012.01.30 release

2490. By Patrick Crews

Merge vijay's translations update + tarball release

Branch metadata

Branch format:
Branch format 7
Repository format:
Bazaar repository format 2a (needs bzr 1.16 or later)
Stacked on:
lp:~drizzle-trunk/drizzle/development
This branch contains Public information 
Everyone can see this information.