
|
If you were logged in you would be able to see more operations.
|
|
Variable bindings that are set using the setBinding(...) methods on org.openrdf.query.Query objects are erroneously included in the query result. For example, with the following code...
TupleQuery query = con.prepareTupleQuery(QueryLanguage.SERQL, "select Entity FROM {Entity} rdf:type {Class}");
query.setBinding("Class", RDFS.CLASS);
TupleQueryResult queryResult = query.evaluate();
...the "Class" binding is include in each BindingSet returned by the TupleQueryResult. One would expect that the returned BindingSet's would only include bindings for the "Entity" variable.
|
|
|
There are no comments yet on this issue.
|
| |
|
|