Hi
Take for instance this mapping :
map:Person
rr:logicalTable [ rr:sqlQuery """
SELECT foo from foobar
""" ];
rr:subjectMap [
rr:template 'http://someurlthatcontainsfoo/{"foo"}';
rr:class foaf:Person;
];
.
with table foobar :
| foo |
| 1 |
The generated URI will be <1> instead of <http://some/uri/that/contains/foo/1>
But with <http://someurithatdoesnotcontains/{"foo"}> the result is correct (i.e. <http://someurithatdoesnotcontains/1>)