We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I woul dlike to use fabduckdb to intercept queries to a non-existent table, including predicates, and replace them with a table function.
So a query like:
select * from icedb where year >= 2022 and year <= 2023
Could be intercepted in python, and rewritten to be:
select * from icedb(start_year:=2022, end_year:=2023)
Or even at this extent, it could be rewritten even further to avoid the table macro and go right to something like:
select * from read_parquet([...], hive_partitioning=1, filename=1) where ...
Tracked for IceDB here: danthegoodman1/icedb#45
The text was updated successfully, but these errors were encountered:
I see that subqueries and CTEs aren't currently supported, which will make it hard to fully implement this for IceDB querying
Sorry, something went wrong.
No branches or pull requests
I woul dlike to use fabduckdb to intercept queries to a non-existent table, including predicates, and replace them with a table function.
So a query like:
Could be intercepted in python, and rewritten to be:
Or even at this extent, it could be rewritten even further to avoid the table macro and go right to something like:
Tracked for IceDB here: danthegoodman1/icedb#45
The text was updated successfully, but these errors were encountered: