virtuoso-opensource
virtuoso-opensource copied to clipboard
COALESCE and division by zero
Query:
SELECT DISTINCT ?Z WHERE
{
BIND (COALESCE(1/0,3) AS ?Z)
}
Virtuoso returns error:
Virtuoso 22012 Error SR084: Division by 0.
But according to SPARQL 1.1 documentation (http://www.w3.org/TR/sparql11-query/#func-coalesce):
COALESCE(1/0, ?x)returns2supposing?x = 2
@schwarja: This problem has been recreated and reported to development to fix ...
Is this still not fixed?