Update the _FILE_OFFSET_BITS macro so that builds work again on QNX.
+
Change the datatype of SrcList.nSrc from type u8 to type int to work around
+ an issue in the C compiler on AIX.
+
Get extension loading working on Cygwin.
+
Bug fix: Fix the char() SQL function so that it returns an empty string
+ rather than an "out of memory" error when called with zero arguments.
+
Bug fix: DISTINCT now recognizes that a zeroblob and a blob of all
+ 0x00 bytes are the same thing.
+ Ticket [fccbde530a]
+
Bug fix: Compute the correct answer for queries that contain an IS NOT NULL
+ term in the WHERE clause and also contain an OR term in the WHERE clause and
+ are compiled with SQLITE_ENABLE_STAT4.
+ Ticket [4c86b126f2]
+
Bug fix: Make sure "rowid" columns are correctly resolved in joins between
+ normal tables and WITHOUT ROWID tables.
+ Ticket [c34d0557f7]
+
Bug fix: Make sure the same temporary registers are not used in concurrent
+ co-routines used to implement compound SELECT statements containing ORDER
+ BY clauses, as such use can lead to incorrect answers.
+ Ticket [8c63ff0eca]
+
Bug fix: Ensure that "ORDER BY random()" clauses do not get optimized out.
+ Ticket [65bdeb9739]
+
Bug fix: Repair a name-resolution error that can occur in sub-select statements
+ contained within a TRIGGER.
+ Ticket [4ef7e3cfca]
+
Bug fix: Fix column default values expressions of the form
+ "DEFAULT(-(-9223372036854775808))" so that they work correctly, initializing
+ the column to a floating point value approximately equal to
+ +9223372036854775808.0.
+