
|
If you were logged in you would be able to see more operations.
|
|
For example (see unit test testcases-sparql-1.1/aggregates/sparql-aggregate-restriction-01) :
PREFIX : <http://example/>
SELECT ?x (MIN(?y) * 2 AS ?min) ?strZ
WHERE {
?x :p ?y .
?x :q ?z .
}
GROUP BY ?x (STR(?z) as ?strZ)
This fails because the min operator is part of a math expression, and as such is not correctly picked up and linked to the group.
|
|
|
|