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
Once we do #4111 we should enhance io.prestosql.plugin.jdbc.JdbcMetadata#getTableProperties to return information about enforced predicate.
io.prestosql.plugin.jdbc.JdbcMetadata#getTableProperties
Depends on #4111.
The text was updated successfully, but these errors were encountered:
I scenario where this could be visible is
SELECT * FROM (SELECT * FROM table_a WHERE ak = 42) INNER JOIN (SELECT * FROM table_b WHERE bk = 42) ON ak = bk
Once we push predicates into JDBC table scan, we need getTableProperties to let the optimizer know that the join is actually a cross join.
getTableProperties
Sorry, something went wrong.
No branches or pull requests
Once we do #4111 we should enhance
io.prestosql.plugin.jdbc.JdbcMetadata#getTableProperties
to return information about enforced predicate.
Depends on #4111.
The text was updated successfully, but these errors were encountered: