Uploaded image for project: 'Apache Jena'
  1. Apache Jena
  2. JENA-553

Handling of WITH keyword in SPARQL UPDATE seems to broken in Fuseki 1.0.0.

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Major
    • Resolution: Fixed
    • Jena 2.11.0, Fuseki 1.0.0
    • Jena 2.11.1
    • ARQ
    • 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" }
      

      Attachments

        Activity

          People

            andy Andy Seaborne
            brunni Michael Brunnbauer
            Votes:
            0 Vote for this issue
            Watchers:
            4 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: