babashka / pod-babashka-go-sqlite3

A babashka pod for interacting with sqlite3.
BSD 3-Clause "New" or "Revised" License
35 stars 4 forks source link

enable fts5 #17

Closed snewcomer closed 2 months ago

snewcomer commented 2 months ago

log: SQLite FTS5 support: {:sqlite_compileoption_used('ENABLE_FTS5') 0}

SELECT sqlite_compileoption_used('ENABLE_FTS5');

I'm new to this library so perhaps there is some configuration and tooling. But how can I get full text search available in the sqlite? I see this old comment in the go-sqlite library.

lispyclouds commented 2 months ago

this possibly could work with setting the -tag fts5 when building the pod binary. will be taking a look soon.

lispyclouds commented 2 months ago

18 does this, @borkdude should we enable this generally? im adding some tests too