Skip to content

Commit

Permalink
fix empty buffer
Browse files Browse the repository at this point in the history
  • Loading branch information
Honeta committed Apr 11, 2023
1 parent 94dd827 commit 293c864
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/common/src/array/data_chunk.rs
Original file line number Diff line number Diff line change
Expand Up @@ -465,6 +465,8 @@ impl DataChunk {
})
.sum::<usize>(),
));
} else {
buffers.push(vec![]);
}
}
}
Expand Down

0 comments on commit 293c864

Please sign in to comment.