-
Notifications
You must be signed in to change notification settings - Fork 51
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
(Exqlite.Error) no such table: generate_series #319
Comments
Exqlite makes no attempt to find the table. I'll look into this a little later today. Ecto builds that query and then exqlite execs the built SQL string. I suspect I might have messed up somewhere in |
@jzaehrin do you know if something like that works with postgres and ecto? |
i don’t test it on postgres. I can test this tomorrow, sorry for my late reply |
Not a huge deal. I'm still going to look into this. |
@jzaehrin it seems like you are wanting to use an extension https://www.sqlite.org/series.html
Which is why it works on the CLI for you. I don't compile the https://www.sqlite.org/src/file/ext/misc/series.c misc code as a loadable extension. I have toyed with the idea of packaging these misc extensions in with this distribution. |
As an alternative, would it be possible to have a specific compilation option for this? |
I need to think through the extension compilation and how it will function here. Not everyone will want to load the extensions, and thus I don't want to make them be forced to compile it all or download / waste space unnecessarily by downloading ALL of the precompiled binaries. I'll have an answer for this soon. One option I am mulling around is making extension packages that you can add as deps and load them similar to https://github.com/elixir-sqlite/exqlite?tab=readme-ov-file#using-sqlite3-native-extensions Something like: config :myapp, Myapp.Repo,
database: "path/to/db",
load_extensions: [
Exqlite.Extensions.Series.load_path(),
# custom private compile extensions
"./priv/sqlite/\#{arch_dir}/vector0",
"./priv/sqlite/\#{arch_dir}/vss0"
] |
Totally agree, it would be great to be able to partially choose this kind of extension! |
I am trying to make a mask similar to a binary mask with the database values. I tried to use a selection on generate_series with a left join to output the existing values or nil.
Unfortunately, exqlite tries to find the table generate_series.
The outputted query in error log works perfectly fine
The text was updated successfully, but these errors were encountered: