Closed JonasDev1 closed 1 day ago
ACTION NEEDED
delta-rs follows the Conventional Commits specification for release automation.
The PR title and description are used as the merge commit message. Please update your PR title and description to match the specification.
supersedes this: https://github.com/delta-io/delta-rs/pull/2463
Thanks for finishing this!
@JonasDev1 can you update the python tests asserts, then we are good to go
All modified and coverable lines are covered by tests :white_check_mark:
Project coverage is 72.47%. Comparing base (
0c4344f
) to head (6653332
). Report is 3 commits behind head on main.
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
🚨 Try these New Features:
Description
In the expr to str conversation was an issue for dates.
Before this expr
lit(ScalarValue::Date32(Some(18262)))
was converted to_date = 2020-01-01
. If you want to parse this string again as an expr it will result into...BinaryExpr(**BinaryExpr { left: BinaryExpr(BinaryExpr { left: Literal(Int64(2020)), op: Minus, right: Literal(Int64(1)) })...
which is not correct.Now
lit(ScalarValue::Date32(Some(18262)))
will be converted to_date = '2020-01-01'::date
, which will be parsed a as date again.Related Issue(s)