We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fdf3dd7 commit f278db8Copy full SHA for f278db8
bigframes/core/blocks.py
@@ -178,10 +178,6 @@ def __init__(
178
if len(all_value_columns) > len(self._column_labels):
179
# More columns than labels: Drop the extra columns (assumed to be internal/garbage)
180
self._value_columns = all_value_columns[: len(self._column_labels)]
181
- # Prune the expression to remove hidden columns
182
- self._expr = self._expr.select_columns(
183
- [*self.index_columns, *self._value_columns]
184
- )
185
elif len(all_value_columns) < len(self._column_labels):
186
# Fewer columns than labels: Truncate labels
187
self._value_columns = all_value_columns
0 commit comments