Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FILTER in FILTER EXISTS not properly handled #19

Open
vcharpenay opened this issue Aug 5, 2020 · 2 comments
Open

FILTER in FILTER EXISTS not properly handled #19

vcharpenay opened this issue Aug 5, 2020 · 2 comments

Comments

@vcharpenay
Copy link
Owner

Example pattern:

?o a owl:Ontology ;
   vann:preferredNamespaceUri ?ns .
filter exists {
    ?i a ?c .
    ?c rdfs:subClassOf schema:Enumeration .
    filter (strstarts(str(?i), str(?ns)))
}

example doc: td.ttl.

Expected results but none found.

@vcharpenay
Copy link
Owner Author

Same in optional (same bug?).

?c a skos:Concept
optional {
  ?c skos:editiorialNote ?note .
  filter (contains(?note, "notaword"))
}

won't return any result although some skos:Concept are defined.

@vcharpenay
Copy link
Owner Author

bug in optional was due to an error in makeSafe. Now fixed (e600344) but query evaluation is significantly slower (duplicate evaluations).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant