Skip to content

Commit

Permalink
revert columnobject
Browse files Browse the repository at this point in the history
  • Loading branch information
amorynan committed Oct 10, 2024
1 parent ce0d972 commit c62e31f
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 11 deletions.
9 changes: 0 additions & 9 deletions be/src/vec/columns/column_object.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1001,14 +1001,5 @@ void ColumnObject::insert_indices_from(const IColumn& src, const int* indices_be
});
}

bool ColumnObject::is_exclusive() const {
bool is_exclusive = IColumn::is_exclusive();
for_each_imutable_subcolumn([&](const auto& subcolumn) {
if (!subcolumn.is_exclusive()) {
is_exclusive = false;
}
});
return is_exclusive;
}

} // namespace doris::vectorized
2 changes: 0 additions & 2 deletions be/src/vec/columns/column_object.h
Original file line number Diff line number Diff line change
Expand Up @@ -203,8 +203,6 @@ class ColumnObject final : public COWHelper<IColumn, ColumnObject> {
/// Checks that all subcolumns have consistent sizes.
void check_consistency() const;

bool is_exclusive() const override;

bool has_subcolumn(const PathInData& key) const;

// return null if not found
Expand Down

0 comments on commit c62e31f

Please sign in to comment.