use of org.apache.jena.sparql.core.VarExprList in project jena by apache.
the class TestTransformPromoteTableEmpty method promote_table_empty_assignment_03.
@Test
public void promote_table_empty_assignment_03() {
// Force algebra to have separate extends by using extendDirect()
Op input = OpTable.empty();
input = OpExtend.create(input, new VarExprList(Var.alloc("x"), new NodeValueInteger(1)));
input = OpExtend.create(input, new VarExprList(Var.alloc("y"), new NodeValueInteger(2)));
test(input, t_promote, "(table empty)");
}
Aggregations