Open datokrat opened 8 years ago
SELECT * WHERE { } doesn't match any result. Normally, it should: https://www.w3.org/TR/rdf-sparql-query/#emptyGroupPattern
SELECT * WHERE { }
This simple case really doesn't bother me but in consequence, SELECT * WHERE { { ?s ?p ?o } . {} } will fail, too. This case can occur with computer-generated queries in which there simply are no restrictions.
SELECT * WHERE { { ?s ?p ?o } . {} }
An example of this issue is also "INSERT { ... } WHERE {}" which should be equivalent to "INSERT DATA { ... }", shouldn't it?
SELECT * WHERE { }
doesn't match any result. Normally, it should: https://www.w3.org/TR/rdf-sparql-query/#emptyGroupPatternThis simple case really doesn't bother me but in consequence,
SELECT * WHERE { { ?s ?p ?o } . {} }
will fail, too. This case can occur with computer-generated queries in which there simply are no restrictions.