-
Notifications
You must be signed in to change notification settings - Fork 3k
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
feat(ingest): hide cartesian product warnings in GE profiler #7096
feat(ingest): hide cartesian product warnings in GE profiler #7096
Conversation
@@ -333,7 +340,10 @@ def _execute_queue(self, main_greenlet: greenlet.greenlet) -> None: | |||
# Extract the results into a result for each query. | |||
index = 0 | |||
for _, query_future in pending_queue.items(): | |||
cols = query_future.query.columns | |||
query = query_future.query | |||
if IS_SQLALCHEMY_1_4: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why is this part necessary? The subquery piece, whereas previously it was not
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
not necessary - just suppresses a different warning that SA produces
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
One minor question
@hsheth2 there is a linter error in the pr |
Checklist