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 bbb4096 commit 9485b00Copy full SHA for 9485b00
bigframes/core/blocks.py
@@ -3433,6 +3433,9 @@ def unpivot(
3433
)
3434
new_passthrough_cols = [column_mapping[col] for col in passthrough_columns]
3435
# Last column is offsets
3436
+ if not labels_array.column_ids:
3437
+ # Handle empty column_ids case for multimodal DataFrames
3438
+ return array_value, (tuple(), tuple(), tuple(passthrough_columns))
3439
index_col_ids = [labels_mapping[col] for col in labels_array.column_ids[:-1]]
3440
explode_offsets_id = labels_mapping[labels_array.column_ids[-1]]
3441
0 commit comments