Skip to content

Commit

Permalink
Fix parameter creation for <kvin:valueJson>
Browse files Browse the repository at this point in the history
  • Loading branch information
kenwenzel committed Jan 14, 2025
1 parent 080b34d commit ef90d3b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,8 @@ private void processGraphPattern(StatementPattern sp) throws RDF4JException {
var index = indexFor(sp.getSubjectVar(), true);
index.put(sp.getSubjectVar(), params);
} else {
if (KVIN.VALUE.equals(pValue)) {
// ensure that parameters are created if only kvin:value is present
if (KVIN.VALUE.equals(pValue) || KVIN.VALUE_JSON.equals(pValue)) {
// ensure that parameters are created if only kvin:value or kivn:valueJson is present
createParameters(sp.getSubjectVar());
}

Expand Down

0 comments on commit ef90d3b

Please sign in to comment.