v0.1.23
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