We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 50613a5 commit bf977edCopy full SHA for bf977ed
ydb/core/tablet_flat/flat_mem_iter.h
@@ -133,13 +133,13 @@ namespace NTable {
133
const auto *key = RowIt.GetKey();
134
135
if (len >= KeyCellDefaults->BasicTypes().size()) {
136
- return { KeyCellDefaults->BasicTypes().begin(), key, len };
+ return { KeyCellDefaults->BasicTypes().data(), key, len };
137
} else if (!Key) {
138
Key.insert(Key.end(), key, key + len);
139
Key.insert(Key.end(), (**KeyCellDefaults).begin() + len, (**KeyCellDefaults).end());
140
}
141
142
- return { KeyCellDefaults->BasicTypes().begin(), Key.begin(), ui32(Key.size()) };
+ return { KeyCellDefaults->BasicTypes().data(), Key.data(), ui32(Key.size()) };
143
144
145
bool IsDelta() const
0 commit comments