duckdb / sqlite_scanner

DuckDB extension to read and write to SQLite databases
https://duckdb.org/docs/extensions/sqlite
MIT License
208 stars 21 forks source link

Enable FTS and RTree extensions plus add tests #70

Closed Mytherin closed 11 months ago

Mytherin commented 11 months ago

Fixes #50 Fixes #58

This PR enables the FTS and RTree extensions by enabling the following defines:

SQLITE_ENABLE_FTS5
SQLITE_ENABLE_FTS4
SQLITE_ENABLE_FTS3_PARENTHESIS
SQLITE_ENABLE_RTREE

This is the same list of defines that is set for the CPython sqlite3 module which seems like a good bet.