Github user meiercaleb commented on a diff in the pull request:
https://github.com/apache/incubator-rya/pull/251#discussion_r153533846
--- Diff:
extras/rya.pcj.fluo/pcj.fluo.app/src/main/java/org/apache/rya/indexing/pcj/fluo/app/QueryResultUpdater.java
---
@@ -70,7 +69,7 @@ public void updateQueryResults(
final VariableOrder queryVarOrder =
queryMetadata.getVariableOrder();
// Create the Row Key for the result. If the child node groups
results, then the key must only contain the Group By variables.
- final Bytes resultRow =
RowKeyUtil.makeRowKey(queryMetadata.getNodeId(), queryVarOrder,
childBindingSet);
+ final Bytes resultRow = getRowKey(queryMetadata.getNodeId(),
queryVarOrder, childBindingSet);
--- End diff --
Done.
---