This commit is contained in:
Michael Kolupaev 2013-02-11 10:11:59 +00:00
parent d1cb4373b3
commit 65a18f7afa

View File

@ -91,6 +91,10 @@ void StorageChunks::loadIndex()
index_loaded = true;
String index_path = path + escapeForFileName(name) + "/chunks.chn";
if (!Poco::File(index_path).exists())
return;
ReadBufferFromFile index(index_path, 4096);
while (!index.eof())
{