Skip to content

Commit 1961ed8

Browse files
committed
rename
1 parent 483ff2c commit 1961ed8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ydb/core/tx/columnshard/engines/reader/common/description.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ struct TReadDescription {
3030
// List of columns
3131
std::vector<ui32> ColumnIds;
3232

33-
const std::shared_ptr<IScanCursor>& GetScanCursor() const {
33+
const std::shared_ptr<IScanCursor>& GetScanCursorOptional() const {
3434
return ScanCursor;
3535
}
3636

ydb/core/tx/columnshard/engines/reader/common_reader/constructor/read_metadata.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ TConclusionStatus TReadMetadata::Init(
4444

4545
TReadMetadata::TReadMetadata(const std::shared_ptr<TVersionedIndex>& schemaIndex, const TReadDescription& read)
4646
: TBase(schemaIndex, read.PKRangesFilter->IsReverse() ? TReadMetadataBase::ESorting::DESC : TReadMetadataBase::ESorting::ASC,
47-
read.GetProgram(), schemaIndex->GetSchemaVerified(read.GetSnapshot()), read.GetSnapshot(), read.GetScanCursor())
47+
read.GetProgram(), schemaIndex->GetSchemaVerified(read.GetSnapshot()), read.GetSnapshot(), read.GetScanCursorOptional())
4848
, PathId(read.PathId)
4949
, ReadStats(std::make_shared<TReadStats>()) {
5050
}

0 commit comments

Comments
 (0)