Commit 4ef6f72
authored
Compile sqlite with FTS3 enhanced query syntax enabled (#562)
Fixes #550
This adds three compilation flags to the embedded sqlite module:
- `-DSQLITE_ENABLE_FTS3` to explicitly enable FTS3 support (which AFAIK
is already enabled by default)
- `-DSQLITE_ENABLE_FTS3_PARENTHESIS` to enable the enhanced FTS3 query
syntax (which isn't enabled by default)
- `-DSQLITE_ENABLE_FTS3_TOKENIZER` to enable the two-argument version of
the `fts3_tokenizer()` interface. It still has to be enabled on the
connection-level using `Connection.setconfig`
All those flags are enabled by default in the Debian build of SQLite,
and probably in other distributions as well.1 parent bdb0722 commit 4ef6f72
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
22 | 22 | | |
23 | 23 | | |
24 | 24 | | |
25 | | - | |
| 25 | + | |
26 | 26 | | |
27 | 27 | | |
28 | 28 | | |
0 commit comments