提交 285f3236 编写于 作者: N Nikolai Kochetov

Fix build.

上级 caef0621
...@@ -41,7 +41,7 @@ public: ...@@ -41,7 +41,7 @@ public:
protected: protected:
Chunk generate() override Chunk generate() override
{ {
if (finished) if (is_finished)
{ {
return {}; return {};
} }
...@@ -56,7 +56,7 @@ protected: ...@@ -56,7 +56,7 @@ protected:
columns.emplace_back(src.getByName(name).column); columns.emplace_back(src.getByName(name).column);
if (it == end) if (it == end)
finished = true; is_finished = true;
else else
++it; ++it;
return Chunk(std::move(columns), src.rows()); return Chunk(std::move(columns), src.rows());
...@@ -67,7 +67,7 @@ private: ...@@ -67,7 +67,7 @@ private:
BlocksList::iterator begin; BlocksList::iterator begin;
BlocksList::iterator end; BlocksList::iterator end;
BlocksList::iterator it; BlocksList::iterator it;
bool finished = false; bool is_finished = false;
}; };
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册