dcapwell commented on code in PR #3416:
URL: https://github.com/apache/cassandra/pull/3416#discussion_r1777770459
##########
test/unit/org/apache/cassandra/cql3/CQLTester.java:
##########
@@ -2121,7 +2156,10 @@ public static void assertRows(UntypedResultSet result,
Object[]... rows)
if (!((cellValidator == null && actualValue == null) ||
(cellValidator != null && cellValidator.equals(actualValue))))
{
Object actualValueDecoded = actualValue == null ? null :
column.type.getSerializer().deserialize(actualValue);
- if (!Objects.equal(expected != null ? expected[j] : null,
actualValueDecoded))
+ Object expectedValueDecoded = expected != null ?
expected[j] : null;
Review Comment:
honestly its been way too long I don't remember why this was done... this
patch is from march... my brain struggles with last week =D
--
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]