Github user meiercaleb commented on a diff in the pull request:
https://github.com/apache/incubator-rya/pull/251#discussion_r153532849
--- Diff:
extras/rya.pcj.fluo/pcj.fluo.app/src/main/java/org/apache/rya/indexing/pcj/fluo/app/JoinResultUpdater.java
---
@@ -145,8 +139,8 @@ public void updateJoinResults(
final VisibilityBindingSet newJoinResult =
newJoinResults.next();
// Create the Row Key for the emitted binding set. It does not
contain visibilities.
- final Bytes resultRow =
RowKeyUtil.makeRowKey(joinMetadata.getNodeId(), joinVarOrder, newJoinResult);
-
+ final Bytes resultRow = getRowKey(joinMetadata.getNodeId(),
joinVarOrder, newJoinResult);
--- End diff --
Changed back to make.
---