dbms: fixed error with async. stream [#CONV-2944].

This commit is contained in:
Alexey Milovidov 2012-10-29 02:55:14 +00:00
parent db11d5dbb9
commit 2a95c2b504

View File

@ -89,6 +89,7 @@ protected:
void next()
{
ready.reset();
pool.schedule(boost::bind(&AsynchronousBlockInputStream::calculate, this));
}
@ -96,8 +97,6 @@ protected:
/// Вычисления, которые могут выполняться в отдельном потоке
void calculate()
{
ready.reset();
try
{
block = in->read();