The fts extension in DuckDB is finally installed on my windows machine after much appreciated help.
The first thing I need to do to use this extension is create an fts index.
Following the docs for this extension, I tried:
This does seem unfortunate that this pragma creates multiple statements and doesn’t insulate the user from it given it looks like a single statement. It might qualify as a leaky abstraction and therefore bug in the FTS extension.
"""
Executes a SQL query within a connection and returns the full (materialized) result.
The query function is able to run queries with multiple statements, unlike `DBInterface.execute`(@ref) which is only able to prepare a single statement.
"""
function query(con::DuckDB.Connection, sql::AbstractString)