Re: [sqlite] Alignment bug in SQLIte 3.6.14.2

2009-05-27 Thread Dan
Looks like the same issue as reported here: http://www.sqlite.org/cvstrac/tktview?tn=3869 Fix will be included in 3.6.15. Or just grab the patch here if you're in a hurry: http://www.sqlite.org/cvstrac/chngview?cn= Dan. On May 27, 2009, at 12:12 PM, Brian Dantes wrote: > We've

[sqlite] Alignment bug in SQLIte 3.6.14.2

2009-05-26 Thread Brian Dantes
We've run into an alignment issue in SQLite 3.6.14.2 which only seems to cause a problem under Solaris Sparc in our testing. Failure narrowed down to: src/rowset.c:186 pEntry->v = rowid pEntry is 0xX4 __alignof(*pEntry) is 8 (because of an i64) However sizeof(RowSet) is 28 (and 28%8 = 4),