mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-24 08:32:02 +00:00
Fix build error in Formats/ISchemaReader.cpp
This commit is contained in:
parent
1823cac89d
commit
ae92963b15
@ -24,7 +24,7 @@ IRowSchemaReader::IRowSchemaReader(
|
||||
{
|
||||
std::string col_name_trimmed = column_names[i];
|
||||
boost::trim(col_name_trimmed);
|
||||
if (!col_name.empty())
|
||||
if (!col_name_trimmed.empty())
|
||||
column_names[i] = col_name_trimmed;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user