summaryrefslogtreecommitdiffstats
path: root/yql/essentials/minikql/computation/mkql_computation_node_graph_saveload_ut.cpp
diff options
context:
space:
mode:
authorvvvv <[email protected]>2025-06-23 13:38:54 +0300
committervvvv <[email protected]>2025-06-23 14:22:17 +0300
commit99a63eaece7367f17dac58e66e45043aa641d9f7 (patch)
treed104b51aab8eaf495f95d81525716e34b5bef983 /yql/essentials/minikql/computation/mkql_computation_node_graph_saveload_ut.cpp
parenta731af300f45dd4cb0f3fd3b24c8213fe1425068 (diff)
YQL-20086 minikql
commit_hash:c35c972d6708fb1b3f34fa34a42cdae1ddf11cdc
Diffstat (limited to 'yql/essentials/minikql/computation/mkql_computation_node_graph_saveload_ut.cpp')
-rw-r--r--yql/essentials/minikql/computation/mkql_computation_node_graph_saveload_ut.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/yql/essentials/minikql/computation/mkql_computation_node_graph_saveload_ut.cpp b/yql/essentials/minikql/computation/mkql_computation_node_graph_saveload_ut.cpp
index dc3b20ddcba..1527d598a31 100644
--- a/yql/essentials/minikql/computation/mkql_computation_node_graph_saveload_ut.cpp
+++ b/yql/essentials/minikql/computation/mkql_computation_node_graph_saveload_ut.cpp
@@ -68,15 +68,15 @@ namespace {
struct TStreamWithYield : public NUdf::TBoxedValue {
TStreamWithYield(const TUnboxedValueVector& items, ui32 yieldPos, ui32 index)
- : Items(items)
- , YieldPos(yieldPos)
- , Index(index)
+ : Items_(items)
+ , YieldPos_(yieldPos)
+ , Index_(index)
{}
private:
- TUnboxedValueVector Items;
- ui32 YieldPos;
- ui32 Index;
+ TUnboxedValueVector Items_;
+ ui32 YieldPos_;
+ ui32 Index_;
ui32 GetTraverseCount() const override {
return 0;
@@ -92,13 +92,13 @@ namespace {
}
NUdf::EFetchStatus Fetch(NUdf::TUnboxedValue& result) final {
- if (Index >= Items.size()) {
+ if (Index_ >= Items_.size()) {
return NUdf::EFetchStatus::Finish;
}
- if (Index == YieldPos) {
+ if (Index_ == YieldPos_) {
return NUdf::EFetchStatus::Yield;
}
- result = Items[Index++];
+ result = Items_[Index_++];
return NUdf::EFetchStatus::Ok;
}
};