Skip to content

Commit

Permalink
Merge pull request #46 from ClickHouse/backport_artpaul_pr_110
Browse files Browse the repository at this point in the history
  • Loading branch information
traceon committed Aug 15, 2020
2 parents 001a14e + a3ad717 commit 41dd02a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions clickhouse/columns/array.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,9 @@ void ColumnArray::Append(ColumnRef column) {
}

bool ColumnArray::Load(CodedInputStream* input, size_t rows) {
if (!rows) {
return true;
}
if (!offsets_->Load(input, rows)) {
return false;
}
Expand Down

0 comments on commit 41dd02a

Please # to comment.