You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Added hacky fix, which does additional variable renaming by prefixing, but does not actually check for uniquness (if javascript just had a native HashSet....)
filterConcept := "?s http://geovocab.org/geometry#geometry ?fv_2; ?fv_2"
attrConcept := "?s http://www.opengis.net/ont/geosparql#asWKT ?w; ?s"
intersection using ConceptUtils.createCombinedConcept(attrConcept, filterConcept, true, false, false) yields
actual := "?s http://geovocab.org/geometry#geometry ?s . ?s http://www.opengis.net/ont/geosparql#asWKT ?w; ?s"
expected := "?freshVar http://geovocab.org/geometry#geometry ?s . ?s http://www.opengis.net/ont/geosparql#asWKT ?w; ?s"
with ?freshVar being a newly allocated variable distinct from any other variable
The text was updated successfully, but these errors were encountered: