Skip to content

Commit 492f7e7

Browse files
committed
update
1 parent d16d675 commit 492f7e7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pkg/sql/colexec/group/spill_manager.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -204,11 +204,11 @@ func (sm *SpillManager) ReadSpilledData(filePath string) ([]*batch.Batch, []agge
204204
return nil, nil, err
205205
}
206206

207-
batch := batch.NewWithSize(0)
208-
if err := batch.UnmarshalBinary(data); err != nil {
207+
bat := batch.NewWithSize(0)
208+
if err := bat.UnmarshalBinary(data); err != nil {
209209
return nil, nil, err
210210
}
211-
groups = append(groups, batch)
211+
groups = append(groups, bat)
212212
}
213213

214214
// Read aggregation states

0 commit comments

Comments
 (0)