-
Notifications
You must be signed in to change notification settings - Fork 433
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
chore: bump kernel #3036
chore: bump kernel #3036
Conversation
b121c1b
to
629dd3e
Compare
b54079a
to
8e6a8b7
Compare
8e6a8b7
to
063e0ae
Compare
@@ -542,6 +542,7 @@ impl<'a> DeltaScanBuilder<'a> { | |||
.filter | |||
.map(|expr| context.create_physical_expr(expr, &df_schema).unwrap()); | |||
|
|||
// dbg!(logical_filter.clone()); |
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.
We prolly don't need these now ?
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.
I was debugging a regression caused by the kernel bump. There is something wrong with the statistics being passed to Datafusion
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.
i think there is just a small oversight, that causes the DF failures.
@@ -803,16 +810,16 @@ mod datafusion { | |||
lazy_static::lazy_static! { | |||
static ref ROW_COUNTS_EVAL: Arc<dyn ExpressionEvaluator> = ARROW_HANDLER.get_evaluator( | |||
crate::kernel::models::fields::log_schema_ref().clone(), | |||
Expression::column("add.stats_parsed.numRecords"), | |||
Expression::column(vec!["add.stats_parsed.numRecords"].into_iter()), |
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.
I think this may be the cause for the failing DF tests.
Expression::column(vec!["add.stats_parsed.numRecords"].into_iter()), | |
Expression::column(["add", "stats_parsed", "numRecords"]), |
Pull request was closed
Description
With this change: delta-io/delta-kernel-rs#533 and this change: #2738, we fully support view types.
I'll make a change also upstream in polars to change the arrow compat level to latest
Related Issue(s)