mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 23:52:03 +00:00
Removed useless methods [#CLICKHOUSE-2]
This commit is contained in:
parent
921e09b5f8
commit
e658741ccf
@ -49,8 +49,6 @@ public:
|
||||
bool isSortedOutput() const override { return true; }
|
||||
const SortDescription & getSortDescription() const override { return description; }
|
||||
|
||||
Block getHeader() override { return children.at(0)->getHeader(); }
|
||||
|
||||
protected:
|
||||
/// Can return 1 more records than max_block_size.
|
||||
Block readImpl() override;
|
||||
|
@ -50,8 +50,6 @@ public:
|
||||
return res.str();
|
||||
}
|
||||
|
||||
Block getHeader() override { return children.at(0)->getHeader(); }
|
||||
|
||||
protected:
|
||||
/// Can return 1 more records than max_block_size.
|
||||
Block readImpl() override;
|
||||
|
@ -158,8 +158,6 @@ public:
|
||||
current_pattern->function->destroy(place_for_aggregate_state.data());
|
||||
}
|
||||
|
||||
Block getHeader() override { return children.at(0)->getHeader(); }
|
||||
|
||||
protected:
|
||||
Block readImpl() override;
|
||||
|
||||
|
@ -41,8 +41,6 @@ public:
|
||||
return res.str();
|
||||
}
|
||||
|
||||
Block getHeader() override { return children.at(0)->getHeader(); }
|
||||
|
||||
protected:
|
||||
/// Can return 1 more records than max_block_size.
|
||||
Block readImpl() override;
|
||||
|
@ -37,8 +37,6 @@ public:
|
||||
|
||||
String getID() const override;
|
||||
|
||||
Block getHeader() override { return children.at(0)->getHeader(); }
|
||||
|
||||
protected:
|
||||
/// Can return 1 more records than max_block_size.
|
||||
Block readImpl() override;
|
||||
|
Loading…
Reference in New Issue
Block a user