Skip to content

Commit b5ca1d9

Browse files
authored
chore: performance improvement for resample. (#1042)
1 parent 499f24a commit b5ca1d9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bigframes/core/compile/compiler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,8 +147,8 @@ def compile_fromrange(self, node: nodes.FromRangeNode, ordered: bool = True):
147147
).name("labels")
148148
labels = (
149149
typing.cast(ibis.expr.types.ArrayValue, labels_array_table)
150-
.unnest()
151150
.as_table()
151+
.unnest(["labels"])
152152
)
153153
if ordered:
154154
return compiled.OrderedIR(

0 commit comments

Comments
 (0)