Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
yangzhg committed Apr 22, 2022
1 parent a2df984 commit ba3a315
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion be/src/olap/rowset/segment_v2/binary_plain_page.h
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ class BinaryPlainPageBuilder : public PageBuilder {

bool is_page_full() override {
// data_page_size is 0, do not limit the page size
return _options.data_page_size != 0 && (_size_estimate > _options.data_page_size);
return _options.data_page_size != 0 && _size_estimate > _options.data_page_size;
}

Status add(const uint8_t* vals, size_t* count) override {
Expand Down

0 comments on commit ba3a315

Please sign in to comment.