SQLite Forum

SQLITE_ENABLE_UPDATE_DELETE_LIMIT
Login
A patch was added which allows the amalgamation to be build in such a way as it will work with or without SQLITE_ENABLE_UPDATE_DELETE_LIMIT when the amalgamation is compiled.

<https://www.sqlite.org/src/info/1f96a29dd8654ee3>

This would have first appeared in release code 3.33.0.

Previously SQLITE_ENABLE_UPDATE_DELETE_LIMIT be specified BOTH when the amalgamation is generated AND when it is compiled in order for it to work; or, specified in neither case in order for the additional ORDER BY/LIMIT clauses to not be recognized.  Inconsistency resulted in inconsistent results.

I have no knowledge with respect to SEE ...