mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 07:31:57 +00:00
Minor fix
This commit is contained in:
parent
f7238356d1
commit
bc21d0fb27
@ -75,12 +75,11 @@ private:
|
||||
}
|
||||
std::cout << "\n";
|
||||
|
||||
for (const auto & file_name : file_names)
|
||||
for (const auto & file_name : selected_and_sorted_file_names)
|
||||
{
|
||||
auto path = absolute_path + "/" + file_name;
|
||||
if (disk.isDirectory(path))
|
||||
if (show_hidden || (!file_name.starts_with('.')))
|
||||
listRecursive(disk, path, show_hidden);
|
||||
listRecursive(disk, path, show_hidden);
|
||||
}
|
||||
}
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user