mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-12 17:32:32 +00:00
Revert unnecessary change
This commit is contained in:
parent
f6db0a5261
commit
4306b5a991
@ -2762,7 +2762,7 @@ String KeyCondition::RPNElement::toString() const
|
||||
return toString(fmt::format("column {}", key_column), false);
|
||||
}
|
||||
|
||||
String KeyCondition::RPNElement::toString(String column_name, bool print_constants) const
|
||||
String KeyCondition::RPNElement::toString(std::string_view column_name, bool print_constants) const
|
||||
{
|
||||
auto print_wrapped_column = [this, column_name, print_constants](WriteBuffer & buf)
|
||||
{
|
||||
|
@ -198,7 +198,7 @@ private:
|
||||
: function(function_), range(range_), key_column(key_column_) {}
|
||||
|
||||
String toString() const;
|
||||
String toString(String column_name, bool print_constants) const;
|
||||
String toString(std::string_view column_name, bool print_constants) const;
|
||||
|
||||
Function function = FUNCTION_UNKNOWN;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user