somu-imply commented on code in PR #13576:
URL: https://github.com/apache/druid/pull/13576#discussion_r1081613908
##########
processing/src/main/java/org/apache/druid/query/InlineDataSource.java:
##########
@@ -125,7 +125,7 @@ private static boolean rowsEqual(final Iterable<Object[]>
rowsA, final Iterable<
final Object[] rowA = listA.get(i);
final Object[] rowB = listB.get(i);
- if (!Arrays.equals(rowA, rowB)) {
+ if (!Arrays.deepEquals(rowA, rowB)) {
Review Comment:
This change got percolated here, I'll move to the `equals` here
--
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]