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
graph.rs:314-323 builds Binding::Lit{String} where an IRI term is required — ?g comes back as a plain literal containing the IRI text ({"type":"literal"} instead of {"type":"uri"}).
Decision D-2 (approved): W3C-by-default — drop the implicit default-graph enumeration, keep explicit GRAPH <alias> addressing, no toggle. Three tests pin the current behavior and get updated: it_query_dataset.rs:1591, :1752, it_upsert_duplicate_ids_repro.rs:228. This is the tracking issue for that behavior change (roadmap PR-G1; options considered and rationale are in ROADMAP §4 D-2).
Found and verified by the W3C SPARQL burn-down audit (PR #1437; docs/audit/burn-down/ROADMAP.md §5 on branch test/sparql-testsuite-full-coverage).
Two defects in
GraphOperator:graph.rs:314-323buildsBinding::Lit{String}where an IRI term is required —?gcomes back as a plain literal containing the IRI text ({"type":"literal"}instead of{"type":"uri"}).graph.rs:686-711appends the ledger alias to the unbound-?gfan-out, exposing the default graph as a named graph. This is the deliberate SPARQLGRAPH <iri> { ... }returns no results unless preceded byFROM NAMED <iri>— every named graph must be explicitly enumerated in the dataset clause #1279 extension, but it is W3C-breaking (GRAPH ?gmust range over named graphs only).Decision D-2 (approved): W3C-by-default — drop the implicit default-graph enumeration, keep explicit
GRAPH <alias>addressing, no toggle. Three tests pin the current behavior and get updated:it_query_dataset.rs:1591,:1752,it_upsert_duplicate_ids_repro.rs:228. This is the tracking issue for that behavior change (roadmap PR-G1; options considered and rationale are in ROADMAP §4 D-2).Found and verified by the W3C SPARQL burn-down audit (PR #1437;
docs/audit/burn-down/ROADMAP.md§5 on branchtest/sparql-testsuite-full-coverage).