File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
include/ydb-cpp-sdk/client/table Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -293,7 +293,7 @@ class TIndexDescription {
293
293
EIndexType GetIndexType () const ;
294
294
const std::vector<std::string>& GetIndexColumns () const ;
295
295
const std::vector<std::string>& GetDataColumns () const ;
296
- const std::variant<std::monostate, TKMeansTreeSettings>& GetVectorIndexSettings () const ;
296
+ const std::variant<std::monostate, TKMeansTreeSettings>& GetIndexSettings () const ;
297
297
uint64_t GetSizeBytes () const ;
298
298
299
299
void SerializeTo (Ydb::Table::TableIndex& proto) const ;
Original file line number Diff line number Diff line change @@ -1367,7 +1367,7 @@ TScanQueryPartIterator::TScanQueryPartIterator(
1367
1367
TAsyncScanQueryPart TScanQueryPartIterator::ReadNext () {
1368
1368
if (!ReaderImpl_ || ReaderImpl_->IsFinished ()) {
1369
1369
if (!IsSuccess ())
1370
- RaiseError (TStringBuilder () << " Attempt to perform read on an unsuccessful result "
1370
+ RaiseError (TStringBuilder () << " Attempt to perform read on an unsuccessful result "
1371
1371
<< GetIssues ().ToString ());
1372
1372
RaiseError (" Attempt to perform read on invalid or finished stream" );
1373
1373
}
@@ -2340,7 +2340,7 @@ const std::vector<std::string>& TIndexDescription::GetDataColumns() const {
2340
2340
return DataColumns_;
2341
2341
}
2342
2342
2343
- const std::variant<std::monostate, TKMeansTreeSettings>& TIndexDescription::GetVectorIndexSettings () const {
2343
+ const std::variant<std::monostate, TKMeansTreeSettings>& TIndexDescription::GetIndexSettings () const {
2344
2344
return SpecializedIndexSettings_;
2345
2345
}
2346
2346
You can’t perform that action at this time.
0 commit comments