diff --git a/dbms/src/Storages/System/StorageSystemTables.cpp b/dbms/src/Storages/System/StorageSystemTables.cpp index 9de7c72d84b..ab563c48256 100644 --- a/dbms/src/Storages/System/StorageSystemTables.cpp +++ b/dbms/src/Storages/System/StorageSystemTables.cpp @@ -210,8 +210,11 @@ protected: if (columns_mask[src_index++]) { auto paths = table->getDataPaths(); - for (const String &path : paths) - res_columns[res_index++]->insert(path); + String all_paths; + for (const String & path : paths) + all_paths += path + ';'; + ///@TODO IGR choose separator + res_columns[res_index++]->insert(all_paths); } if (columns_mask[src_index++])