-
Notifications
You must be signed in to change notification settings - Fork 809
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add FTS5 support to sqlite #1797
Labels
Comments
kkyr
added
enhancement
New feature or request
triage
New issues that hasn't been reviewed
labels
Aug 14, 2022
kyleconroy
added
📚 sqlite
accepted
and removed
triage
New issues that hasn't been reviewed
labels
Aug 20, 2022
Hello! |
mcdoker18
added a commit
to mcdoker18/sqlc
that referenced
this issue
Jul 26, 2023
Fixes: sqlc-dev#1797 Out of scope: * table-valued function. https://www.sqlite.org/vtab.html#tabfunc2 * insert commands. https://www.sqlite.org/fts5.html#special_insert_commands * you cannot use table name to the left of MATCH or equality operator
mcdoker18
added a commit
to mcdoker18/sqlc
that referenced
this issue
Jul 26, 2023
Fixes: sqlc-dev#1797 Out of scope: * table-valued function. https://www.sqlite.org/vtab.html#tabfunc2 * insert commands. https://www.sqlite.org/fts5.html#special_insert_commands * you cannot use table name to the left of MATCH or equality operator
kyleconroy
pushed a commit
that referenced
this issue
Jul 26, 2023
Fixes: #1797 Out of scope: * table-valued function. https://www.sqlite.org/vtab.html#tabfunc2 * insert commands. https://www.sqlite.org/fts5.html#special_insert_commands * you cannot use table name to the left of MATCH or equality operator
🎉🎉🎉 |
@mcdoker18 @lvignoli I can't figure out how to use this.
I want MATCH on every columns of the virtual fts5 table. I can't find a way to do this. |
@yanc0 Hi, sorry for the late response. This was not implemented in my commit. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
What do you want to change?
Add FTS5 support to sqlite engine.
schema.sql
query.sql
Running
sqlc generate
on the above input results in the following error:What database engines need to be changed?
sqlite
What programming language backends need to be changed?
Go
The text was updated successfully, but these errors were encountered: