dbms: improvement to prev. revision [#CONV-7889].

This commit is contained in:
Alexey Milovidov 2013-06-17 07:57:58 +00:00
parent e853c4b320
commit 170d408ba3

View File

@ -98,9 +98,20 @@ StorageChunks::StorageChunks(
loadIndex();
/// Создадим все таблицы типа ChunkRef. Они должны располагаться в той же БД.
{
Poco::ScopedLock<Poco::Mutex> lock(context.getMutex());
for (ChunkIndices::const_iterator it = chunk_indices.begin(); it != chunk_indices.end(); ++it)
{
if (context.isTableExist(database_name, it->first))
{
LOG_ERROR(log, "Chunk " << it->first << " exists in more than one Chunks tables.");
context.detachTable(database_name, it->first);
}
context.addTable(database_name, it->first, StorageChunkRef::create(it->first, context, database_name, name, true));
}
}
}
void StorageChunks::loadIndex()
{