Revert unnecessary change

This commit is contained in:
Alexey Milovidov 2023-10-19 08:13:23 +02:00
parent f6db0a5261
commit 4306b5a991
2 changed files with 2 additions and 2 deletions

View File

@ -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)
{

View File

@ -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;