stardog-union / stardog-vsc

Stardog Visual Studio Code Extensions
14 stars 8 forks source link

Bad parsing of string function #84

Open romulusFR opened 3 years ago

romulusFR commented 3 years ago

Query using string functions like CONCAT or UCASE in SELECT clause are badly parsed, with error '{' expected. e.g.

prefix foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT ?s CONCAT(?lastname, " " , ?firstname)
WHERE {
  ?s a foaf:Person .
  ?s foaf:familyName ?lastname.
  ?s foaf:firstName ?firstname.
}