Skip to content

Commit

Permalink
fixed escape character in RMLTC0010c-* mappings kg-construct#27
Browse files Browse the repository at this point in the history
  • Loading branch information
gertjandemulder committed May 20, 2020
1 parent 54ce0cf commit 809d961
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion test-cases/RMLTC0010c-CSV/mapping.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@

rr:predicateObjectMap [
rr:predicate ex:code ;
rr:objectMap [ rr:template "\{\{\{ {ISO 3166} \}\}\}"; rr:termType rr:Literal]
rr:objectMap [ rr:template "\\{\\{\\{ {\"ISO 3166\"} \\}\\}\\}"; rr:termType rr:Literal; ]
] .
2 changes: 1 addition & 1 deletion test-cases/RMLTC0010c-JSON/mapping.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@

rr:predicateObjectMap [
rr:predicate ex:code ;
rr:objectMap [ rr:template "\{\{\{ {ISO 3166} \}\}\}"; rr:termType rr:Literal]
rr:objectMap [ rr:template "\\{\\{\\{ {\"ISO 3166\"} \\}\\}\\}"; rr:termType rr:Literal; ]
] .
2 changes: 1 addition & 1 deletion test-cases/RMLTC0010c-MySQL/mapping.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

rr:predicateObjectMap [
rr:predicate ex:code ;
rr:objectMap [ rr:template "\{\{\{ {ISO 3166} \}\}\}"; rr:termType rr:Literal]
rr:objectMap [ rr:template "\\{\\{\\{ {\"ISO 3166\"} \\}\\}\\}"; rr:termType rr:Literal; ]
] .

<#DB_source> a d2rq:Database;
Expand Down
2 changes: 1 addition & 1 deletion test-cases/RMLTC0010c-PostgreSQL/mapping.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

rr:predicateObjectMap [
rr:predicate ex:code ;
rr:objectMap [ rr:template "\{\{\{ {ISO 3166} \}\}\}"; rr:termType rr:Literal]
rr:objectMap [ rr:template "\\{\\{\\{ {\"ISO 3166\"} \\}\\}\\}"; rr:termType rr:Literal; ]
] .

<#DB_source> a d2rq:Database;
Expand Down
2 changes: 1 addition & 1 deletion test-cases/RMLTC0010c-SQLServer/mapping.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

rr:predicateObjectMap [
rr:predicate ex:code ;
rr:objectMap [ rr:template "\{\{\{ {ISO 3166} \}\}\}"; rr:termType rr:Literal]
rr:objectMap [ rr:template "\\{\\{\\{ {\"ISO 3166\"} \\}\\}\\}"; rr:termType rr:Literal; ]
] .

<#DB_source> a d2rq:Database;
Expand Down
2 changes: 1 addition & 1 deletion test-cases/RMLTC0010c-XML/mapping.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@

rr:predicateObjectMap [
rr:predicate ex:code ;
rr:objectMap [ rr:template "\{\{\{ {ISO3166} \}\}\}"; rr:termType rr:Literal]
rr:objectMap [ rr:template "\\{\\{\\{ {\"ISO 3166\"} \\}\\}\\}"; rr:termType rr:Literal; ]
] .

0 comments on commit 809d961

Please sign in to comment.