AjaxXu commented on a change in pull request #8961:
[FLINK-13073][table-blink-runtime]BinaryRow in Blink runtime has wrong
FIRST_BYTE_ZERO mask
URL: https://github.com/apache/flink/pull/8961#discussion_r299810579
##########
File path:
flink-table/flink-table-runtime-blink/src/test/java/org/apache/flink/table/dataformat/BinaryRowTest.java
##########
@@ -294,6 +294,12 @@ public void anyNullTest() throws IOException {
BinaryRowWriter writer = new BinaryRowWriter(row);
assertFalse(row.anyNull());
+ writer.setNullAt(24);
+ assertTrue(row.anyNull());
+
+ writer.setNullAt(55);
Review comment:
It's a good advise. I will change 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.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services