Skip to content

Commit bc22346

Browse files
fix build
1 parent ab52bec commit bc22346

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ydb/core/tx/columnshard/engines/reader/abstract/read_context.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ class IDataReader {
108108
virtual void DoAbort() = 0;
109109
virtual bool DoIsFinished() const = 0;
110110
virtual std::vector<TPartialReadResult> DoExtractReadyResults(const int64_t maxRowsInBatch) = 0;
111-
virtual bool DoReadNextInterval() = 0;
111+
virtual TConclusion<bool> DoReadNextInterval() = 0;
112112
public:
113113
IDataReader(const std::shared_ptr<TReadContext>& context);
114114
virtual ~IDataReader() = default;
@@ -156,7 +156,7 @@ class IDataReader {
156156
sb << DoDebugString(verbose);
157157
return sb;
158158
}
159-
bool ReadNextInterval() {
159+
[[nodiscard]] TConclusion<bool> ReadNextInterval() {
160160
return DoReadNextInterval();
161161
}
162162
};

0 commit comments

Comments
 (0)