Skip to content

Commit cc8c8f6

Browse files
committed
fixup
1 parent f305792 commit cc8c8f6

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

ydb/library/yql/minikql/computation/mkql_vector_spiller_adapter.h

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
#pragma once
22

3-
#include <format>
43
#include <queue>
54

65
#include <ydb/library/yql/minikql/defs.h>
@@ -112,11 +111,11 @@ class TVectorSpillerAdapter {
112111
return std::move(CurrentVector);
113112
}
114113

115-
///Start restoring next vector. If the entire contents of the vector is in memory
116-
///State will be changed to DataReady without any async read operation. ExtractVector is expected
114+
///Start restoring next vector. If th eentire contents of the vector are in memory
115+
///State will be changed to DataREady without any async read operation. ExtractVector is expected
117116
///to be called immediately.
118117
void RequestNextVector() {
119-
MKQL_ENSURE(State == EState::AcceptingDataRequests, std::format("[MISHA ERROR], State = {}\n", (int)State));
118+
MKQL_ENSURE(State == EState::AcceptingDataRequests, "Internal logic error");
120119
MKQL_ENSURE(CurrentVector.empty(), "Internal logic error");
121120
MKQL_ENSURE(!StoredChunksElementsCount.empty(), "Internal logic error");
122121

0 commit comments

Comments
 (0)