Hi,
Running develop7 with a procedure that attempts to return two result sets.
Probably not wise but I was experimenting with ways to return metadata
about a query.
The procedure did something including:
==
...other stuff...
query := 'select ?S ?P ?O {} limit 10 offset 20';
ex
Here's an interesting bug. On the DBpedia endpoint, this query:
select ?a ?b ?c where {
values (?a ?b ?c) {
(1 "2" <3>)
("4" <5> 6)
(<7> 8 "9")
}
}
returns these results (CSV here, for clarity):
"a","b","c"
1,,
"4",,
"7",,
There are no values bound for variables ?b and ?c. Tha