Re: [Virtuoso-users] V7.0.0/Jena provider bug with SELECT/LIMIT Results off by one

2013-10-07 Thread Erich Bremer
Hi Hugh, Weirder yet, the following SPARQL works (using Virtuoso Jena provider with either Jena 2.10.0 or 2.11.0: SELECT * WHERE { GRAPH ?graph { ?s ?p ?o } . values ?graph {} . filter not exists {graph ?gg {?s ?j ?q} . values ?gg {}} }

Re: [Virtuoso-users] V7.0.0/Jena provider bug with SELECT/LIMIT Results off by one

2013-10-07 Thread Erich Bremer
Hi Hugh, A similar case: Using either 2.10.0 or 2.11.0 with the following code: VirtGraph set = new VirtGraph ("jdbc:virtuoso://localhost:", "dba", "dba"); Query sparql = QueryFactory.create("SELECT * WHERE { GRAPH ?graph { ?s ?p ?o } . values ?graph {} . filter not

Re: [Virtuoso-users] phantom graph V7.0.0.

2013-10-07 Thread Erich Bremer
Hi Hugh, Explicitly or implicitly created, I would think that if a graph containing triples existed in the system, that: select distinct ?g where {?graph ?g {?s ?p ?o}} would list that graph. Some of the triples make it in and those triples are query able such as in: select ?g ?s ?o w