szehon-ho commented on PR #16652: URL: https://github.com/apache/iceberg/pull/16652#issuecomment-4796158132
missed a lot of the discussion, but well thought out. Was reading the predicate/expression part, the 'Value expressions are not valid predicates' is a nice way to reduce the chance for null ambiguity: if_else(f(x), "A", "B") //ambiguious if f(x) is null if_else(f(x) = true, "A", "B") -- 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]
