Skip to content
Discussion options

You must be logged in to vote

There's no such cut-off. DuckLake runs queries using DuckDB itself and doesn't directly run queries in the metadata server, i.e. it relies on duckdb-postgres to talk to Postgres. Most likely the min_value/max_value filter is not pushed down into the Postgres scan (yet) which means this is executed only DuckDB side currently.

If you want to view the queries that DuckLake executes itself, you can use the following logging:

PRAGMA enable_logging('QueryLog');
SET logging_storage='stdout';

Replies: 2 comments

Comment options

You must be logged in to vote
0 replies
Answer selected by ryanschneider
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants