projects
/
mp-sparql-moved-to-github.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5814892
)
MPSPARQL-17: Accepr bnodes as well as uris
author
Heikki Levanto
<heikki@indexdata.dk>
Mon, 11 May 2015 13:45:48 +0000
(15:45 +0200)
committer
Heikki Levanto
<heikki@indexdata.dk>
Mon, 11 May 2015 13:45:48 +0000
(15:45 +0200)
SOme returned nodes have internal node-ids, and not external
uris. This patch makes them fetchable as welll
src/filter_sparql.cpp
patch
|
blob
|
history
diff --git
a/src/filter_sparql.cpp
b/src/filter_sparql.cpp
index
11206a7
..
cef45ef
100644
(file)
--- a/
src/filter_sparql.cpp
+++ b/
src/filter_sparql.cpp
@@
-506,7
+506,9
@@
Z_Records *yf::SPARQL::Session::fetch(
{
if (n->type == XML_ELEMENT_NODE)
{
- if (!strcmp((const char *) n->name, "uri"))
+ //if (!strcmp((const char *) n->name, "uri"))
+ if (!strcmp((const char *) n->name, "uri") ||
+ !strcmp((const char *) n->name, "bnode") )
{
uri = mp::xml::get_text(n->children);