From 6e244e9246e007e9b9683be78a2075b3e5c56c43 Mon Sep 17 00:00:00 2001 From: songqing Date: Fri, 16 May 2025 18:44:05 +0800 Subject: [PATCH] fix data type's error --- src/common/datatypes/Value.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/datatypes/Value.cpp b/src/common/datatypes/Value.cpp index 7a6b5e4fb1..3e30b1ad9b 100644 --- a/src/common/datatypes/Value.cpp +++ b/src/common/datatypes/Value.cpp @@ -1382,7 +1382,7 @@ void Value::setU(const Set& v) { } void Value::setU(Set&& v) { - new (std::addressof(value_.vVal)) std::unique_ptr(new Set(std::move(v))); + new (std::addressof(value_.uVal)) std::unique_ptr(new Set(std::move(v))); type_ = Type::SET; }