Skip to content

Commit 8f34bc8

Browse files
fix dependencies
1 parent f56c0fe commit 8f34bc8

File tree

4 files changed

+13
-11
lines changed

4 files changed

+13
-11
lines changed

ydb/core/formats/arrow/serializer/ya.make

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ LIBRARY()
33
PEERDIR(
44
contrib/libs/apache/arrow
55
ydb/core/formats/arrow/common
6+
ydb/services/metadata/abstract
67
ydb/library/actors/core
78
ydb/core/protos
89
)

ydb/services/metadata/abstract/request_features.cpp

+11
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,15 @@ TString TFeaturesExtractor::GetRemainedParamsString() const {
1111
return JoinSeq(",", features);
1212
}
1313

14+
std::optional<TString> TFeaturesExtractor::Extract(const TString& paramName) {
15+
auto it = Features.find(paramName);
16+
if (it == Features.end()) {
17+
return {};
18+
} else {
19+
const TString result = it->second;
20+
Features.erase(it);
21+
return result;
22+
}
23+
}
24+
1425
}

ydb/services/metadata/abstract/request_features.h

+1-10
Original file line numberDiff line numberDiff line change
@@ -39,16 +39,7 @@ class TFeaturesExtractor: TNonCopyable {
3939
}
4040
}
4141

42-
std::optional<TString> Extract(const TString& paramName) {
43-
auto it = Features.find(paramName);
44-
if (it == Features.end()) {
45-
return {};
46-
} else {
47-
const TString result = it->second;
48-
Features.erase(it);
49-
return result;
50-
}
51-
}
42+
std::optional<TString> Extract(const TString& paramName);
5243

5344
};
5445
}

ydb/services/metadata/abstract/ya.make

-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ PEERDIR(
1919
ydb/library/actors/core
2020
ydb/library/yql/core/expr_nodes
2121
ydb/public/api/protos
22-
ydb/services/metadata/request
2322
)
2423

2524
END()

0 commit comments

Comments
 (0)