Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
Jena 2.11.0, Fuseki 1.0.0
-
None
Description
This does not generate the triple with "test1" as object:
drop graph <http://mytest>; insert data { graph <http://mytest> { _:b0 <http://test> "test" }}; WITH <http://mytest> DELETE { ?s ?p "test" } INSERT { ?s ?p "test1" } WHERE { ?s ?p "test" }
But this does (without WITH on default graph):
drop DEFAULT; insert data { _:b0 <http://test> "test" }; DELETE { ?s ?p "test" } INSERT { ?s ?p "test1" } WHERE { ?s ?p "test" }