summaryrefslogtreecommitdiffstats
path: root/yql/essentials/minikql/comp_nodes/mkql_enumerate.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/comp_nodes/mkql_enumerate.cpp
parenta731af300f45dd4cb0f3fd3b24c8213fe1425068 (diff)
YQL-20086 minikql
commit_hash:c35c972d6708fb1b3f34fa34a42cdae1ddf11cdc
Diffstat (limited to 'yql/essentials/minikql/comp_nodes/mkql_enumerate.cpp')
-rw-r--r--yql/essentials/minikql/comp_nodes/mkql_enumerate.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/yql/essentials/minikql/comp_nodes/mkql_enumerate.cpp b/yql/essentials/minikql/comp_nodes/mkql_enumerate.cpp
index 31ef5761c65..f56dd99070b 100644
--- a/yql/essentials/minikql/comp_nodes/mkql_enumerate.cpp
+++ b/yql/essentials/minikql/comp_nodes/mkql_enumerate.cpp
@@ -81,19 +81,19 @@ public:
private:
ui64 GetListLength() const override {
- if (!Length) {
- Length = List.GetListLength();
+ if (!Length_) {
+ Length_ = List.GetListLength();
}
- return *Length;
+ return *Length_;
}
bool HasListItems() const override {
- if (!HasItems) {
- HasItems = List.HasListItems();
+ if (!HasItems_) {
+ HasItems_ = List.HasListItems();
}
- return *HasItems;
+ return *HasItems_;
}
NUdf::TUnboxedValue GetListIterator() const override {