Skip to content

Commit c99a4c8

Browse files
committed
Build fix
1 parent cbc34b2 commit c99a4c8

File tree

5 files changed

+13
-14
lines changed

5 files changed

+13
-14
lines changed

ydb/core/kqp/opt/logical/kqp_opt_log_indexes.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -544,11 +544,10 @@ void VectorReadMain(
544544
.Columns(mainColumns)
545545
.Done().Ptr();
546546
} else {
547-
read = Build<TKqlStreamLookupTable>(ctx, pos)
547+
read = Build<TKqlLookupTable>(ctx, pos)
548548
.Table(postingTable)
549549
.LookupKeys(read)
550550
.Columns(mainColumns)
551-
.Settings(settings.BuildNode(ctx, pos))
552551
.Done().Ptr();
553552
}
554553
}

ydb/core/tx/datashard/build_index/local_kmeans.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ class TLocalKMeansScan final : public TLocalKMeansScanBase {
288288
return EScan::Feed;
289289
}
290290

291-
EScan Feed(TArrayRef<const TCell> key, const TRow& row) final
291+
EScan Feed(TArrayRef<const TCell> key, const TRow& row) noexcept final
292292
{
293293
LOG_T("Feed " << Debug());
294294

@@ -322,7 +322,7 @@ class TLocalKMeansScan final : public TLocalKMeansScanBase {
322322
return Uploader.ShouldWaitUpload() ? EScan::Sleep : EScan::Feed;
323323
}
324324

325-
EScan Exhausted() final
325+
EScan Exhausted() noexcept final
326326
{
327327
LOG_D("Exhausted " << Debug());
328328

ydb/core/tx/datashard/build_index/prefix_kmeans.cpp

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ class TPrefixKMeansScanBase: public TActor<TPrefixKMeansScanBase>, public NTable
168168
}
169169
}
170170

171-
TInitialState Prepare(IDriver* driver, TIntrusiveConstPtr<TScheme>) final
171+
TInitialState Prepare(IDriver* driver, TIntrusiveConstPtr<TScheme>) noexcept final
172172
{
173173
TActivationContext::AsActorContext().RegisterWithSameMailbox(this);
174174
LOG_I("Prepare " << Debug());
@@ -179,7 +179,7 @@ class TPrefixKMeansScanBase: public TActor<TPrefixKMeansScanBase>, public NTable
179179
return {EScan::Feed, {}};
180180
}
181181

182-
TAutoPtr<IDestructable> Finish(EAbort abort) final
182+
TAutoPtr<IDestructable> Finish(EAbort abort) noexcept final
183183
{
184184
auto& record = Response->Record;
185185
record.SetReadRows(ReadRows);
@@ -199,12 +199,12 @@ class TPrefixKMeansScanBase: public TActor<TPrefixKMeansScanBase>, public NTable
199199
return nullptr;
200200
}
201201

202-
void Describe(IOutputStream& out) const final
202+
void Describe(IOutputStream& out) const noexcept final
203203
{
204204
out << Debug();
205205
}
206206

207-
EScan PageFault() final
207+
EScan PageFault() noexcept final
208208
{
209209
LOG_T("PageFault " << Debug());
210210
return EScan::Feed;
@@ -293,7 +293,7 @@ class TPrefixKMeansScan final : public TPrefixKMeansScanBase {
293293
LOG_I("Create " << Debug());
294294
}
295295

296-
EScan Seek(TLead& lead, ui64 seq) final
296+
EScan Seek(TLead& lead, ui64 seq) noexcept final
297297
{
298298
LOG_D("Seek " << seq << " " << Debug());
299299

@@ -308,7 +308,7 @@ class TPrefixKMeansScan final : public TPrefixKMeansScanBase {
308308
return EScan::Feed;
309309
}
310310

311-
EScan Feed(TArrayRef<const TCell> key, const TRow& row) final
311+
EScan Feed(TArrayRef<const TCell> key, const TRow& row) noexcept final
312312
{
313313
LOG_T("Feed " << Debug());
314314

@@ -346,7 +346,7 @@ class TPrefixKMeansScan final : public TPrefixKMeansScanBase {
346346
return Uploader.ShouldWaitUpload() ? EScan::Sleep : EScan::Feed;
347347
}
348348

349-
EScan Exhausted() final
349+
EScan Exhausted() noexcept final
350350
{
351351
LOG_D("Exhausted " << Debug());
352352

ydb/core/tx/datashard/build_index/reshuffle_kmeans.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ class TReshuffleKMeansScan final : public TReshuffleKMeansScanBase {
232232
LOG_I("Create " << Debug());
233233
}
234234

235-
EScan Seek(TLead& lead, ui64 seq) final
235+
EScan Seek(TLead& lead, ui64 seq) noexcept final
236236
{
237237
LOG_D("Seek " << seq << " " << Debug());
238238

@@ -259,7 +259,7 @@ class TReshuffleKMeansScan final : public TReshuffleKMeansScanBase {
259259
return Uploader.ShouldWaitUpload() ? EScan::Sleep : EScan::Feed;
260260
}
261261

262-
EScan Exhausted() final
262+
EScan Exhausted() noexcept final
263263
{
264264
LOG_D("Exhausted " << Debug());
265265

ydb/core/tx/datashard/build_index/sample_k.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ class TSampleKScan final: public TActor<TSampleKScan>, public NTable::IScan {
137137
return EScan::Feed;
138138
}
139139

140-
EScan Exhausted() final
140+
EScan Exhausted() noexcept final
141141
{
142142
LOG_D("Exhausted " << Debug());
143143

0 commit comments

Comments
 (0)