zanmato1984 commented on code in PR #47333: URL: https://github.com/apache/arrow/pull/47333#discussion_r2276996253
########## cpp/src/arrow/compute/expression_test.cc: ########## @@ -953,13 +953,13 @@ TEST(Expression, ExecuteChunkedArray) { ExecBatch batch{inputs, 3}; ASSERT_OK_AND_ASSIGN(Datum res, ExecuteScalarExpression(expr, batch)); + ASSERT_TRUE(res.is_chunked_array()); Review Comment: We have other similar cases asserting the output should be chunked array: https://github.com/apache/arrow/blob/cd8e6774dd02e1a32325c851c85a931276616cc2/cpp/src/arrow/compute/exec_test.cc#L1251-L1260 So I think this case should be updated as such. -- 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...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org