Re: [sqlite] SQLite version 3.30.0 in about two weeks.

2019-09-27 Thread Micah Moore
Thank you for the recommendations and latest adjustment, both work to resolve the issue. On Fri, Sep 27, 2019 at 12:37 PM Richard Hipp wrote: > On 9/27/19, Micah Moore wrote: > > Hello, > > > > Attempting to use the Pre-release snapshot of SQLite 3.30.0 amalgamation

Re: [sqlite] SQLite version 3.30.0 in about two weeks.

2019-09-27 Thread Micah Moore
Hello, Attempting to use the Pre-release snapshot of SQLite 3.30.0 amalgamation in a [Catalyst]( https://developer.apple.com/ipad-apps-for-mac/) based project -- targeting UIKit for macOS -- fails with the error "'gethostuuid' is unavailable: not available on macCatalyst" Adapting this conditiona

Re: [sqlite] Adapt HAVE_GETHOSTUUID conditional for UIKit for macOS

2019-07-18 Thread Micah Moore
Thanks for the response. Just to clarify, this is separate from the `warning "gethostuuid() is disabled."` exuded from the else portion of the conditional (when targeting iOS). When targeting UIKit for macOS, the conditional gets into the if portion because TARGET_OS_UIKITFORMAC is not included

[sqlite] Adapt HAVE_GETHOSTUUID conditional for UIKit for macOS

2019-07-17 Thread Micah Moore
Hello, Attempting to use SQLite version 3.29.0 amalgamation in a [Catalyst]( https://developer.apple.com/ipad-apps-for-mac/) based project -- targeting UIKit for macOS -- fails with the error "'gethostuuid' is unavailable: not available on UIKit for macOS" Specifically this conditional: ``` #if

[sqlite] Segmentation fault can result from setting error message parameter to NULL when calling sqlite3session_diff

2019-05-20 Thread Micah Moore
Hello, We have found a minor bug in the session extension. The problem can occur in sqlite3session_diff, when there is a table schema mismatch, if no error pointer is provided. According to the documentation of sqlite3session_diff: > ** If the operation successful, SQLITE_OK is returned. Otherwi