We had a minor issue with one of the debug.assert calls always coming up in our
debug builds. I took a quick look at it and it turns out that in the method
dropCell the call: Debug.Assert( sz == cellSize( pPage, idx ) ); will not have
a properly implemented cellSize method unless you define SQLITE_DEBUG. To
remain consistent with this schema I put an ifdef around the debug.assert call,
like so:
#if SQLITE_DEBUG
Debug.Assert( sz == cellSize( pPage, idx ) );
#endif
Original issue reported on code.google.com by noah.hart@gmail.com on 14 Mar 2011 at 4:14
Original issue reported on code.google.com by
noah.hart@gmail.com
on 14 Mar 2011 at 4:14