Hi, I am trying run the official SPARQL 1.0 test suite on Jena. One of the test is failing with the following error message: Encountered " "." ". "" at line 5, column 23.
The command I am using: ./sparql --data=sparql10-test-suite/data-r2/basic/data-4.ttl --query=sparql10-test-suite/data-r2/basic/term-7.rq Note that you can find all SPARQL 1.0 tests suite here: https://www.w3.org/2001/sw/DataAccess/tests/README Side question: Are the SPARQL 1.0 and 1.1 tests suites regularly tested on Jena ? Thank you for your help.
@prefix : <http://example.org/ns#> . @prefix xsd: <http://www.w3.org/2001/XMLSchema#> . @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . :x :p1 "true"^^xsd:boolean . :x :p2 "false"^^xsd:boolean . :x rdf:type :C . :x :n1 "123.0"^^xsd:decimal . :x :n2 "456."^^xsd:decimal . :x :n3 "+5"^^xsd:integer . :x :n4 "-18"^^xsd:integer .
