pranavbhole commented on code in PR #15127:
URL: https://github.com/apache/druid/pull/15127#discussion_r1357407455
##########
processing/src/main/java/org/apache/druid/segment/transform/ExpressionTransform.java:
##########
@@ -100,7 +100,11 @@ static class ExpressionRowFunction implements RowFunction
public Object eval(final Row row)
{
try {
- return expr.eval(InputBindings.forRow(row)).valueOrDefault();
+ Object result = expr.eval(InputBindings.forRow(row)).valueOrDefault();
+ if (result != null && result.getClass().isArray()) {
+ return Rows.objectToStrings(result);
+ }
+ return result;
Review Comment:
we dont really need this change. Removed it.
--
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]