Skip to content

Commit 15b2937

Browse files
authored
Merge f830faf into 5916f32
2 parents 5916f32 + f830faf commit 15b2937

File tree

18 files changed

+19
-17
lines changed

18 files changed

+19
-17
lines changed

.github/actions/test_ya/action.yml

+2
Original file line numberDiff line numberDiff line change
@@ -192,6 +192,8 @@ runs:
192192
params+=(-A)
193193
fi
194194

195+
params+=(-k)
196+
195197
params+=(
196198
--stat -DCONSISTENT_DEBUG --no-dir-outputs
197199
--test-failure-code 0 --build-all

build/internal/ya.conf

+1
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,4 @@ USE_ICONV = "static"
2222
USE_IDN = "static"
2323
APPLE_SDK_LOCAL = "yes"
2424
CFLAGS = "-fno-omit-frame-pointer"
25+
FIX_UNUSED_PARAMETR_PLS = "1" # 31 jul 2024. Transitional flag for protobuf fix, DTCC-2275

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/config/tools/protobuf_plugin/main.cpp

+1-2
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,7 @@ class TMessageGenerator
4444
return name;
4545
}
4646

47-
TString ConstructFullFieldPath(const TDeque<const FieldDescriptor*>& fieldPath, const FieldDescriptor* field) const {
48-
47+
TString ConstructFullFieldPath(const TDeque<const FieldDescriptor*>& fieldPath, const FieldDescriptor* /*field*/) const {
4948
TVector<TString> path;
5049
path.push_back("");
5150
for (size_t i = 1; i < fieldPath.size(); ++i) {

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/formats/arrow/accessor/plain/accessor.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class TTrivialArray: public IChunkedArray {
1212
protected:
1313
virtual std::optional<ui64> DoGetRawSize() const override;
1414

15-
virtual TLocalDataAddress DoGetLocalData(const std::optional<TCommonChunkAddress>& /*chunkCurrent*/, const ui64 position) const override {
15+
virtual TLocalDataAddress DoGetLocalData(const std::optional<TCommonChunkAddress>& /*chunkCurrent*/, const ui64 /*position*/) const override {
1616
return TLocalDataAddress(Array, 0, 0);
1717
}
1818
virtual std::shared_ptr<arrow::ChunkedArray> DoGetChunkedArray() const override {

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ class TSparsedArray: public IChunkedArray {
115115
return bytes;
116116
}
117117

118-
TSparsedArray(std::vector<TSparsedArrayChunk>&& data, const std::shared_ptr<arrow::Scalar>& defaultValue,
118+
TSparsedArray(std::vector<TSparsedArrayChunk>&& data, const std::shared_ptr<arrow::Scalar>& /*defaultValue*/,
119119
const std::shared_ptr<arrow::DataType>& type, const ui32 recordsCount)
120120
: TBase(recordsCount, EType::SparsedArray, type)
121121
, Records(std::move(data)) {

ydb/core/formats/arrow/accessor/sparsed/constructor.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ NKikimrArrowAccessorProto::TConstructor TConstructor::DoSerializeToProto() const
2727
return result;
2828
}
2929

30-
bool TConstructor::DoDeserializeFromProto(const NKikimrArrowAccessorProto::TConstructor& proto) {
30+
bool TConstructor::DoDeserializeFromProto(const NKikimrArrowAccessorProto::TConstructor& /*proto*/) {
3131
return true;
3232
}
3333

ydb/core/formats/arrow/reader/position.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ class TSortableScanData {
9797
return PositionAddress[colIdx].GetAddress().GetLocalIndex(pos);
9898
}
9999

100-
std::shared_ptr<TSortableScanData> BuildCopy(const ui64 position) const {
100+
std::shared_ptr<TSortableScanData> BuildCopy(const ui64 /*position*/) const {
101101
return std::make_shared<TSortableScanData>(*this);
102102
}
103103

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/columnshard/engines/scheme/abstract/index_info.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ class IIndexInfo {
165165
fieldId == (ui32)ESpecialColumn::DELETE_FLAG;
166166
}
167167

168-
static bool IsNullableVerified(const ui32 fieldId) {
168+
static bool IsNullableVerified(const ui32 /*fieldId*/) {
169169
return false;
170170
}
171171

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(),

ydb/library/yql/minikql/comp_nodes/mkql_wide_combine.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ struct TCombinerNodes {
132132
}
133133
}
134134

135-
void ConsumeRawData(TComputationContext& ctx, NUdf::TUnboxedValue* keys, NUdf::TUnboxedValue** from, NUdf::TUnboxedValue* to) const {
135+
void ConsumeRawData(TComputationContext& /*ctx*/, NUdf::TUnboxedValue* keys, NUdf::TUnboxedValue** from, NUdf::TUnboxedValue* to) const {
136136
std::fill_n(keys, KeyResultNodes.size(), NUdf::TUnboxedValuePod());
137137
for (ui32 i = 0U; i < ItemNodes.size(); ++i) {
138138
if (from[i] && IsInputItemNodeUsed(i)) {

ydb/library/yql/providers/yt/lib/res_pull/res_or_pull.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ void TSkiffExecuteResOrPull::WriteValue(const NUdf::TUnboxedValue& value, TType*
185185
}
186186
}
187187

188-
bool TSkiffExecuteResOrPull::WriteNext(TMkqlIOCache& specsCache, const NYT::TNode& rec, ui32 tableIndex) {
188+
bool TSkiffExecuteResOrPull::WriteNext(TMkqlIOCache& specsCache, const NYT::TNode& rec, ui32 /*tableIndex*/) {
189189
if (!HasCapacity()) {
190190
Truncated = true;
191191
return false;

ydb/library/yql/sql/v1/select.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ class TNodeSource: public ISource {
287287
return ISource::DoInit(ctx, src);
288288
}
289289

290-
TNodePtr Build(TContext& ctx) final {
290+
TNodePtr Build(TContext& /*ctx*/) final {
291291
auto nodeAst = AstNode(Node);
292292
if (WrapToList) {
293293
nodeAst = Y("ToList", nodeAst);

0 commit comments

Comments
 (0)