In our project we use CouchbaseLiteSwift to store and sync data. However we also have a seperate SQLite database not related to Couchbase.
Using the json_extract function on this database results in the following error when having CouchbaseLiteSwift as a dependency to the project.
"no such column: <json path>..", code=1, codeDescription="SQL logic error"
If i remove the dependency, json_extract works again.
I have created a simple SwiftUI app demonstrating the issue here
This is quite the show-stopper for us as it’s a third party library using the json_extract function.