On 08/10/14 15:06, Julien Plu wrote:
> Hi,
> 
> I think I found a little bug in the SPARQL parser for Jena 2.12.0. When I
> run the query :
> 
> SELECT count(distinct ?s) as ?count WHERE {?s ?p ?o}

You need parentheses around the ... as ...:

SELECT (count(distinct ?s) as ?count) WHERE {?s ?p ?o}

Damian

Reply via email to