alamb commented on code in PR #14156: URL: https://github.com/apache/datafusion/pull/14156#discussion_r1921060557
########## datafusion/physical-expr/src/expressions/case.rs: ########## @@ -344,7 +344,16 @@ impl CaseExpr { fn case_column_or_null(&self, batch: &RecordBatch) -> Result<ColumnarValue> { let when_expr = &self.when_then_expr[0].0; let then_expr = &self.when_then_expr[0].1; - if let ColumnarValue::Array(bit_mask) = when_expr.evaluate(batch)? { + + let when_expr_value = when_expr.evaluate(batch)?; + let when_expr_value = match when_expr_value { Review Comment: As a follow up, I have added one in - https://github.com/apache/datafusion/pull/14159 -- 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: github-unsubscr...@datafusion.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org For additional commands, e-mail: github-h...@datafusion.apache.org