Skip to content

Commit

Permalink
Fixed error in test case 3b
Browse files Browse the repository at this point in the history
  • Loading branch information
chrdebru committed Feb 25, 2024
1 parent 2aea389 commit 21db141
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
3 changes: 1 addition & 2 deletions test-cases/RMLTC0003b-MySQL/mapping.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@
rml:logicalSource [ rml:query "SELECT ID, LastName, CONCAT(`FirstName`, '', `LastName`) as Name FROM student" ;
rml:referenceFormulation rml:SQL2008Query ;
rml:source <http://example.com/base/#DB_source> ;
rml:sqlVersion rml:SQL2008 ;
rml:tableName "student" ] ;
rml:sqlVersion rml:SQL2008 ] ;
rml:predicateObjectMap [ rml:objectMap [ rml:reference "Name" ;
rml:termType rml:Literal ] ;
rml:predicate foaf:name ] ;
Expand Down
3 changes: 1 addition & 2 deletions test-cases/RMLTC0003b-PostgreSQL/mapping.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@
rml:logicalSource [ rml:query "SELECT id, lastname, concat_ws(firstname, '', lastname) as name FROM student" ;
rml:referenceFormulation rml:SQL2008Query ;
rml:source <http://example.com/base/#DB_source> ;
rml:sqlVersion rml:SQL2008 ;
rml:tableName "student" ] ;
rml:sqlVersion rml:SQL2008 ] ;
rml:predicateObjectMap [ rml:objectMap [ rml:reference "name" ;
rml:termType rml:Literal ] ;
rml:predicate foaf:name ] ;
Expand Down
3 changes: 1 addition & 2 deletions test-cases/RMLTC0003b-SQLServer/mapping.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@
rml:logicalSource [ rml:query "SELECT ID, LastName, concat_ws(FirstName, '', LastName) as Name FROM student" ;
rml:referenceFormulation rml:SQL2008Query ;
rml:source <http://example.com/base/#DB_source> ;
rml:sqlVersion rml:SQL2008 ;
rml:tableName "student" ] ;
rml:sqlVersion rml:SQL2008 ] ;
rml:predicateObjectMap [ rml:objectMap [ rml:reference "Name" ;
rml:termType rml:Literal ] ;
rml:predicate foaf:name ] ;
Expand Down

0 comments on commit 21db141

Please sign in to comment.