Github user HuangWHWHW commented on a diff in the pull request:
https://github.com/apache/flink/pull/1029#discussion_r37168080
--- Diff:
flink-runtime/src/main/java/org/apache/flink/runtime/operators/hash/CompactingHashTable.java
---
@@ -223,7 +223,7 @@ public CompactingHashTable(TypeSerializer<T>
buildSideSerializer,
// check the size of the first buffer and record it. all
further buffers must have the same size.
// the size must also be a power of 2
this.segmentSize = memorySegments.get(0).size();
- if ( (this.segmentSize & this.segmentSize - 1) != 0) {
+ if ((this.segmentSize & this.segmentSize - 1) != 0) {
--- End diff --
Sorry, this maybe a mistake that pressed a space.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---