Add comment

This commit is contained in:
Kruglov Pavel 2022-06-21 14:32:12 +02:00 committed by GitHub
parent f304fc9179
commit 8bf78dbc95
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -173,6 +173,8 @@ static auto getNameRange(const ColumnsDescription::ColumnsContainer & columns, c
{
String name_with_dot = name_without_dot + ".";
/// First we need to check if we have column with name name_without_dot
/// and if not - check if we have names that start with name_with_dot
for (auto it = columns.begin(); it != columns.end(); ++it)
{
if (it->name == name_without_dot)