Skip to content

v0.1.23

Choose a tag to compare

@parkervg parkervg released this 14 Apr 11:58
· 2 commits to main since this release

Cascade filter bugfix

Here:

# Remove columns, if they were only needed for the cascade_filter
distinct_values = distinct_values.select(
    set([colname]) | set([i.columnname for i in resolved_additional_args])
).unique(maintain_order=True)

We needed to insert the maintain_order=True in order for polars to be deterministic, and ensure proper re-alignment of mapped values to distinct input values.

Full Changelog: v0.1.22...v0.1.23