wgtmac commented on code in PR #120: URL: https://github.com/apache/iceberg-cpp/pull/120#discussion_r2158169511
########## src/iceberg/expression/expression.h: ########## @@ -67,8 +66,8 @@ class ICEBERG_EXPORT Expression { virtual Operation op() const = 0; /// \brief Returns the negation of this expression, equivalent to not(this). - virtual Result<std::shared_ptr<Expression>> Negate() const { - return InvalidExpression("Expression cannot be negated"); + virtual std::shared_ptr<Expression> Negate() const { + throw IcebergError("Expression cannot be negated"); Review Comment: Why changing the return type? We need to stick to `Result` instead of exception. -- 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: issues-unsubscr...@iceberg.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For additional commands, e-mail: issues-h...@iceberg.apache.org