summaryrefslogtreecommitdiffstats
path: root/yql/essentials/minikql/comp_nodes/mkql_exists.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_exists.cpp
parenta731af300f45dd4cb0f3fd3b24c8213fe1425068 (diff)
YQL-20086 minikql
commit_hash:c35c972d6708fb1b3f34fa34a42cdae1ddf11cdc
Diffstat (limited to 'yql/essentials/minikql/comp_nodes/mkql_exists.cpp')
-rw-r--r--yql/essentials/minikql/comp_nodes/mkql_exists.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/yql/essentials/minikql/comp_nodes/mkql_exists.cpp b/yql/essentials/minikql/comp_nodes/mkql_exists.cpp
index 7dac8c63865..a566a6b1672 100644
--- a/yql/essentials/minikql/comp_nodes/mkql_exists.cpp
+++ b/yql/essentials/minikql/comp_nodes/mkql_exists.cpp
@@ -22,8 +22,8 @@ public:
Value* DoGenerateGetValue(const TCodegenContext& ctx, Value* value, BasicBlock*& block) const {
auto& context = ctx.Codegen.GetContext();
const auto check = IsExists(value, block, context);
- if (Node->IsTemporaryValue())
- ValueCleanup(Node->GetRepresentation(), value, ctx, block);
+ if (Node_->IsTemporaryValue())
+ ValueCleanup(Node_->GetRepresentation(), value, ctx, block);
return MakeBoolean(check, context, block);
}
#endif