Closed lemon24 closed 2 years ago
In SQLite 3.38, the JSON functions are built-in, and don't require a compile option.
reader uses PRAGMA compile_options to check if the JSON functions are present, which results in failures like these:
PRAGMA compile_options
reader.exceptions.StorageError: database requirement error: required SQLite compile options missing: ['ENABLE_JSON1']
Instead of looking at the compile options, reader should be checking for the required functionality.
In SQLite 3.38, the JSON functions are built-in, and don't require a compile option.
reader uses
PRAGMA compile_options
to check if the JSON functions are present, which results in failures like these:Instead of looking at the compile options, reader should be checking for the required functionality.