Github user kchilton2 commented on a diff in the pull request:

    https://github.com/apache/incubator-rya/pull/36#discussion_r59215674
  
    --- Diff: 
extras/rya.pcj.fluo/pcj.fluo.app/src/main/java/org/apache/rya/indexing/pcj/fluo/app/JoinResultUpdater.java
 ---
    @@ -407,15 +411,35 @@ public boolean hasNext() {
             public BindingSet next() {
                 final MapBindingSet bs = new MapBindingSet();
     
    -            for(Binding binding : newResult) {
    +            for(final Binding binding : newResult) {
                     bs.addBinding(binding);
                 }
     
    -            for(Binding binding : joinedResults.next()) {
    +            final BindingSet joinResult = joinedResults.next();
    +            for(final Binding binding : joinResult) {
                     bs.addBinding(binding);
                 }
     
    -            return bs;
    +            String visibility = "";
    +            if(newResult instanceof VisibilityBindingSet && joinResult 
instanceof VisibilityBindingSet) {
    --- End diff --
    
    This is another area where we should be able to assume we're using 
VisibilityBindingSets.


---
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.
---

Reply via email to