mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-19 14:11:58 +00:00
Systemtable paths Bugfix.
This commit is contained in:
parent
e7faa04726
commit
254356bd58
@ -210,8 +210,11 @@ protected:
|
||||
if (columns_mask[src_index++])
|
||||
{
|
||||
auto paths = table->getDataPaths();
|
||||
String all_paths;
|
||||
for (const String & path : paths)
|
||||
res_columns[res_index++]->insert(path);
|
||||
all_paths += path + ';';
|
||||
///@TODO IGR choose separator
|
||||
res_columns[res_index++]->insert(all_paths);
|
||||
}
|
||||
|
||||
if (columns_mask[src_index++])
|
||||
|
Loading…
Reference in New Issue
Block a user