Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion polars_io_tools/io_sources/pushdown_pivot.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ def pushdown_pivot(
# Defer all `collect_schema()` walks (the source schema, the full pivot output schema, and the per-`on`-value pivot
# schemas used for the output→on-value mapping) until Polars actually needs them — typically when it asks for the
# registered schema at collect time. This avoids forcing schema resolution on the input LazyFrame eagerly when the
# wrapper is constructed (the convention documented on `register_io_source_with_is_pure` and used by `multi_source`).
# wrapper is constructed (the convention documented on `register_io_source_with_is_pure` and used by `pushdown_combine`).
_resolved: dict[str, Any] = {}

def _resolve() -> dict[str, Any]:
Expand Down
2 changes: 1 addition & 1 deletion polars_io_tools/io_sources/pushdown_unpivot.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def pushdown_unpivot(
# Defer all `collect_schema()` walks (the source schema, the resolved on-columns list, and the declared unpivot output
# schema) until Polars actually needs them — typically when it asks for the registered schema at collect time. This
# avoids forcing schema resolution on the input LazyFrame eagerly when the wrapper is constructed (the convention
# documented on `register_io_source_with_is_pure` and used by `multi_source`).
# documented on `register_io_source_with_is_pure` and used by `pushdown_combine`).
_resolved: dict[str, Any] = {}

def _resolve() -> dict[str, Any]:
Expand Down
Loading