Hi All, I've got a segfault after running these queries:
sparql delete from graph <http://my_graph2> { ?s ?p ?o } where {graph <http://my_graph2> { ?s ?p ?o }}; sparql select * where { graph <http://my_graph2> { ?s ?p ?o } }; sparql insert into graph <http://my_graph2> { <http://a> <http://b> "1"^^<http://www.w3.org/2001/XMLSchema#int> }; sparql select * where { graph <http://my_graph2> { ?s ?p ?o } }; sparql delete from graph <http://my_graph2> { <http://a> <http://b> "1"^^<http://www.w3.org/2001/XMLSchema#int> }; sparql select * where { graph <http://my_graph2> { ?s ?p ?o } }; sparql delete from graph ?g { ?s ?p ?o } where {graph ?g { ?s ?p ?o }}; The order is preserved. It happened when running the last query. Here is a small hint from gdb: Program received signal SIGSEGV, Segmentation fault. [Switching to Thread 0xa1be9b90 (LWP 30458)] 0xb7c98330 in strnlen () from /lib/i686/cmov/libc.so.6 (gdb) bt #0 0xb7c98330 in strnlen () from /lib/i686/cmov/libc.so.6 #1 0xb7c64afb in vfprintf () from /lib/i686/cmov/libc.so.6 #2 0xb7c89324 in vsnprintf () from /lib/i686/cmov/libc.so.6 #3 0x083fe1de in ?? () #4 0x09925c40 in ?? () #5 0x000005dc in ?? () #6 0x0852ad58 in ?? () #7 0xa1be6848 in ?? () #8 0x00000000 in ?? () Unfortunately it was not a debug build. I'll make a debug build if necessary. -- Alexander