-
Notifications
You must be signed in to change notification settings - Fork 94
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
Prepare for 22.0.0 release #320
Conversation
This is currently blocked on apache/datafusion#5949 |
datafusion/tests/test_context.py
Outdated
@@ -282,10 +282,11 @@ def test_dataset_filter_nested_data(ctx): | |||
|
|||
# This filter will not be pushed down to DatasetExec since it | |||
# isn't supported | |||
df = df.select( | |||
df = df.filter(column("nested_data")["b"] > literal(5))\ |
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.
Move the filter before the select due to apache/datafusion#5949
datafusion/tests/test_dataframe.py
Outdated
@@ -84,10 +84,11 @@ def test_select_columns(df): | |||
|
|||
|
|||
def test_filter(df): | |||
df = df.select( | |||
df = df.filter(column("a") > literal(2))\ |
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.
Move the filter before the select due to apache/datafusion#5949
@jdye64 fyi |
Thanks for the heads up @andygrove anything you need me to help with? I'll keep an eye on any CI test failures. Still all running as of writing |
No, all good. Just wanted to make you aware this was happening. I will cut an RC today. |
Which issue does this PR close?
N/A
Rationale for this change
What changes are included in this PR?
Are there any user-facing changes?