Skip to content

Commit f830faf

Browse files
committed
more
1 parent 6e4d62c commit f830faf

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

ydb/core/blobstorage/pdisk/blobstorage_pdisk_impl_metadata.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ namespace NKikimr::NPDisk {
7070
Release(actorSystem);
7171
}
7272

73-
void Release(TActorSystem *actorSystem) override {
73+
void Release(TActorSystem * /*actorSystem*/) override {
7474
delete this;
7575
}
7676
};

ydb/core/formats/arrow/accessor/composite/accessor.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class TCompositeChunkedArray: public NArrow::NAccessor::IChunkedArray {
2121
return {};
2222
}
2323

24-
virtual std::shared_ptr<arrow::Scalar> DoGetScalar(const ui32 index) const override {
24+
virtual std::shared_ptr<arrow::Scalar> DoGetScalar(const ui32 /*index*/) const override {
2525
AFL_VERIFY(false)("problem", "cannot use method");
2626
return nullptr;
2727
}

ydb/core/formats/arrow/accessor/composite_serial/accessor.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ class TDeserializeChunkedArray: public NArrow::NAccessor::IChunkedArray {
6060
return {};
6161
}
6262

63-
virtual std::shared_ptr<arrow::Scalar> DoGetScalar(const ui32 index) const override {
63+
virtual std::shared_ptr<arrow::Scalar> DoGetScalar(const ui32 /*index*/) const override {
6464
AFL_VERIFY(false)("problem", "cannot use method");
6565
return nullptr;
6666
}

ydb/core/grpc_services/rpc_alter_table.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ class TAlterTableRPC : public TRpcSchemeRequestActor<TAlterTableRPC, TEvAlterTab
228228
Send(schemeCache, ev);
229229
}
230230

231-
void Navigate(const TTableId& pathId, const TActorContext& ctx) {
231+
void Navigate(const TTableId& pathId, const TActorContext& /*ctx*/) {
232232
DatabaseName = Request_->GetDatabaseName()
233233
.GetOrElse(DatabaseFromDomain(AppData()));
234234

ydb/core/statistics/aggregator/ut/ut_traverse_columnshard.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ Y_UNIT_TEST_SUITE(TraverseColumnShard) {
8989
auto sender = runtime.AllocateEdgeActor();
9090
bool observerFirstExec = true;
9191
auto observer = runtime.AddObserver<TEvHive::TEvRequestTabletDistribution>(
92-
[&](TEvHive::TEvRequestTabletDistribution::TPtr& ev)
92+
[&](TEvHive::TEvRequestTabletDistribution::TPtr& /*ev*/)
9393
{
9494
if (observerFirstExec) {
9595
observerFirstExec = false;

ydb/core/tx/columnshard/engines/changes/indexation.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ class TBatchInfo {
5353
YDB_READONLY_DEF(std::shared_ptr<NArrow::TGeneralContainer>, Batch);
5454

5555
public:
56-
TBatchInfo(const std::shared_ptr<NArrow::TGeneralContainer>& batch, const NEvWrite::EModificationType modificationType)
56+
TBatchInfo(const std::shared_ptr<NArrow::TGeneralContainer>& batch, const NEvWrite::EModificationType /*modificationType*/)
5757
: Batch(batch) {
5858
}
5959
};

ydb/core/tx/schemeshard/schemeshard__operation_create_restore_incremental_backup.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const char* IB_RESTORE_CDC_STREAM_NAME = "__ib_restore_stream";
1616

1717
namespace NKikimr::NSchemeShard {
1818

19-
void DoCreateLock(const TOperationId opId, const TPath& workingDirPath, const TPath& tablePath, bool allowIndexImplLock,
19+
void DoCreateLock(const TOperationId opId, const TPath& workingDirPath, const TPath& tablePath, bool /*allowIndexImplLock*/,
2020
TVector<ISubOperation::TPtr>& result)
2121
{
2222
auto outTx = TransactionTemplate(workingDirPath.PathString(),

0 commit comments

Comments
 (0)