Skip to content

Commit 88f7ac2

Browse files
committed
fix
1 parent 88c0d98 commit 88f7ac2

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

ydb/core/kqp/host/kqp_host.cpp

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -456,17 +456,13 @@ class TAsyncSplitQueryResult : public TKqpAsyncResultBase<IKqpHost::TSplitResult
456456
, SessionCtx(std::move(sessionCtx))
457457
, Cluster(cluster) {
458458
YQL_ENSURE(ExprCtxStorage && Expr && FakeWorld);
459-
//auto prevEval = ExprCtxStorage->Step.IsDone(NYql::TExprStep::ExprEval);
460-
//ExprCtxStorage->Step.Done(NYql::TExprStep::ExprEval);
459+
ExprCtxStorage->Step.Done(NYql::TExprStep::ExprEval);
461460
}
462461

463462
void FillResult(TResult& result) const override {
464463
if (!result.Success()) {
465464
return;
466465
}
467-
//if (!prevEval) {
468-
// ExprCtxStorage->Step.Repeat(NYql::TExprStep::ExprEval);
469-
//}
470466

471467
auto rewriteResults = RewriteExpression(Expr, *ExprCtxStorage, SessionCtx, GetExprRoot());
472468
if (rewriteResults.empty()) {

0 commit comments

Comments
 (0)