FTS5 has a lot of exciting functionality (mostly BM-25), but removes some functionality I care about - the offsets and snippet functions.
I'm considering using Custom Auxiliary Functions to re-implement these pieces of functionality, and the docs suggest that this is achieved with FTS5 by calling xCreateFunction() on the fts5_api object.
I've found info re: SQL custom functions in the docs, but not mention of FTS5 custom auxiliary functions if they're supported.
Is there any straightforward way to achieve this?
FTS5 has a lot of exciting functionality (mostly BM-25), but removes some functionality I care about - the
offsets
andsnippet
functions.I'm considering using Custom Auxiliary Functions to re-implement these pieces of functionality, and the docs suggest that this is achieved with FTS5 by calling
xCreateFunction()
on thefts5_api
object.I've found info re: SQL custom functions in the docs, but not mention of FTS5 custom auxiliary functions if they're supported. Is there any straightforward way to achieve this?