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

    https://github.com/apache/incubator-rya/pull/36#discussion_r58911417
  
    --- Diff: 
extras/indexing/src/test/java/mvm/rya/indexing/external/tupleSet/PcjTablesIntegrationTests.java
 ---
    @@ -151,35 +151,39 @@ public void addResults() throws PcjException, 
TableNotFoundException, BindingSet
     
             // Create a PCJ table in the Mini Accumulo.
             final String pcjTableName = new 
PcjTableNameFactory().makeTableName(RYA_TABLE_PREFIX, "testPcj");
    -        Set<VariableOrder> varOrders = new 
ShiftVarOrderFactory().makeVarOrders(new VariableOrder("name;age"));
    -        PcjTables pcjs = new PcjTables();
    +        final Set<VariableOrder> varOrders = new 
ShiftVarOrderFactory().makeVarOrders(new VariableOrder("name;age"));
    +        final PcjTables pcjs = new PcjTables();
             pcjs.createPcjTable(accumuloConn, pcjTableName, varOrders, sparql);
     
             // Add a few results to the PCJ table.
    -        MapBindingSet alice = new MapBindingSet();
    +        final MapBindingSet alice = new MapBindingSet();
             alice.addBinding("name", new URIImpl("http://Alice";));
             alice.addBinding("age", new NumericLiteralImpl(14, 
XMLSchema.INTEGER));
     
    -        MapBindingSet bob = new MapBindingSet();
    +        final MapBindingSet bob = new MapBindingSet();
             bob.addBinding("name", new URIImpl("http://Bob";));
             bob.addBinding("age", new NumericLiteralImpl(16, 
XMLSchema.INTEGER));
     
    -        MapBindingSet charlie = new MapBindingSet();
    +        final MapBindingSet charlie = new MapBindingSet();
             charlie.addBinding("name", new URIImpl("http://Charlie";));
             charlie.addBinding("age", new NumericLiteralImpl(12, 
XMLSchema.INTEGER));
     
    -        Set<BindingSet> results = Sets.<BindingSet>newHashSet(alice, bob, 
charlie);
    +        final Set<VisibilityBindingSet> results = 
Sets.<VisibilityBindingSet>newHashSet(
    +                new VisibilityBindingSet(alice),
    --- End diff --
    
    whitespace


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