Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
eldenmoon committed Sep 18, 2024
1 parent bf2193d commit 0d9107d
Showing 1 changed file with 3 additions and 9 deletions.
12 changes: 3 additions & 9 deletions be/src/vec/columns/column_nothing.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,9 @@ class ColumnNothing final : public COWHelper<IColumnDummy, ColumnNothing> {
ColumnPtr permute(const Permutation& perm, size_t limit) const override {
return clone_dummy(limit ? std::min(s, limit) : s);
}
Field operator[](size_t) const override {
return {};
}
void get(size_t, Field& f) const override {
f = {};
}
void insert(const Field&) override {
++s;
}
Field operator[](size_t) const override { return {}; }
void get(size_t, Field& f) const override { f = {}; }
void insert(const Field&) override { ++s; }

public:
const char* get_family_name() const override { return "Nothing"; }
Expand Down

0 comments on commit 0d9107d

Please sign in to comment.