diff options
author | uzhastik <uzhas@ydb.tech> | 2024-07-03 09:43:57 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-03 09:43:57 +0300 |
commit | 5427e992463a9963b02da85e48f6402eccfaed0c (patch) | |
tree | 9488e3042b1f6e998b0e0929e4bbb2429ddded85 | |
parent | 2fe919ac3cdde544d69d862bbd543a7a9e674c7b (diff) | |
download | ydb-5427e992463a9963b02da85e48f6402eccfaed0c.tar.gz |
init IsTuple in cons (#6206)
-rw-r--r-- | ydb/library/yql/minikql/computation/mkql_computation_node_holders.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ydb/library/yql/minikql/computation/mkql_computation_node_holders.h b/ydb/library/yql/minikql/computation/mkql_computation_node_holders.h index 70645f31b8c..28b70cd053c 100644 --- a/ydb/library/yql/minikql/computation/mkql_computation_node_holders.h +++ b/ydb/library/yql/minikql/computation/mkql_computation_node_holders.h @@ -1069,7 +1069,7 @@ public: //unavailable getters may be eliminated at compile time, but it'd make c } private: TKeyTypes KeyTypes; - bool IsTuple; + bool IsTuple = false; //unsused pointers may be eliminated at compile time, but it'd make code much less readable NUdf::IEquate::TPtr Equate; |