Re: Change in execution order between Jena 2.7.2 and 2.7.3

2012-08-12 Thread Andy Seaborne
On 12/08/12 02:46, Holger Knublauch wrote: ... but we and our customers have an unknown number of queries in production ... TQ gets Jena for free. What would help is if TQ tested against the nightly snapshot builds especially just before a release. The project makes available development

Is FROM inside of SERVICE legal?

2012-08-12 Thread Holger Knublauch
The following query is not valid (verified with Jena 2.7.3): SELECT * WHERE { SERVICE http://example.org:8890/sparql { SELECT * FROM http://ex.com/base WHERE { ?s a http://ex.com/resource/Batch . ?s http://ex.com/resource/id ?id . } } } The

Re: Is FROM inside of SERVICE legal?

2012-08-12 Thread Macedo Maia
You can try this query SELECT * WHERE { SERVICE http://example.org:8890/sparql { SELECT * WHERE { ?s a http://ex.com/resource/Batch . ?s http://ex.com/resource/id ?id . } } } 2012/8/12 Holger Knublauch hol...@knublauch.com The following query is not

Re: Is FROM inside of SERVICE legal?

2012-08-12 Thread Macedo Maia
2012/8/13 Macedo Maia 85.m...@gmail.com You can try this query SELECT * WHERE { SERVICE http://example.org:8890/sparql { SELECT * WHERE { ?s a http://ex.com/resource/Batch . ?s http://ex.com/resource/id ?id . } } } 2012/8/12 Holger