HappenLee commented on code in PR #53483:
URL: https://github.com/apache/doris/pull/53483#discussion_r2234856674


##########
be/src/vec/core/types.h:
##########
@@ -405,11 +391,7 @@ struct Decimal {
         return *this;
     }
 
-    auto operator<=>(const Decimal<T>& x) const
-        requires(!Decimal<T>::IsInt256)
-    {
-        return value <=> x.value;
-    }
+    auto operator<=>(const Decimal<T>& x) const { return value <=> x.value; }
 
     auto operator==(const Decimal<T>& x) const { return value == x.value; }

Review Comment:
   remove the define, unless if you define `<=>`



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to