├── .gitattributes ├── .gitignore ├── Dockerfile ├── LICENCE ├── NOTICE ├── README.md ├── docker-compose.yaml ├── morph-base-querytranslator ├── pom.xml └── src │ └── main │ └── scala │ └── es │ └── upm │ └── fi │ └── dia │ └── oeg │ └── morph │ └── base │ └── querytranslator │ ├── MorphAlphaResult.scala │ ├── MorphAlphaResultUnion.scala │ ├── MorphBaseAlphaGenerator.scala │ ├── MorphBaseBetaGenerator.scala │ ├── MorphBaseCondSQLGenerator.scala │ ├── MorphBasePRSQLGenerator.scala │ ├── MorphBaseQueryTranslator.scala │ ├── MorphBetaResult.scala │ ├── MorphBetaResultSet.scala │ ├── MorphCondSQLResult.scala │ ├── MorphPRSQLResult.scala │ ├── MorphTransTPResult.scala │ ├── NameGenerator.scala │ └── engine │ ├── MorphMappingInferrer.scala │ ├── MorphQueryRewriter.scala │ ├── MorphQueryRewritterFactory.scala │ ├── MorphQueryTranslatorUtility.scala │ ├── MorphReorderSubject.scala │ ├── MorphSQLSelectItemGenerator.scala │ ├── MorphXMLQueryResultWriter.scala │ ├── QueryResultTranslator.scala │ ├── QueryResultTranslatorFactory.scala │ └── XMLQueryResultWriterFactory.scala ├── morph-base ├── .gitignore ├── lib │ ├── Zql.jar │ ├── ojdbc6.jar │ ├── r2rml-mappings-generator-v1.1.3.jar │ ├── r2rml-mappings-generator-v1.1.4.jar │ ├── r2rml-mappings-generator-v1.1.5.jar │ ├── r2rml-mappings-generator-v1.1.6.jar │ └── rqr4r2o.jar ├── pom.xml └── src │ ├── main │ └── scala │ │ └── es │ │ └── upm │ │ └── fi │ │ └── dia │ │ └── oeg │ │ └── morph │ │ └── base │ │ ├── CollectionUtility.scala │ │ ├── Constants.scala │ │ ├── DBUtility.scala │ │ ├── GeneralUtility.scala │ │ ├── GitHubUtility.scala │ │ ├── MorphBenchmarking.scala │ │ ├── MorphProperties.scala │ │ ├── MorphTriple.scala │ │ ├── R2RMLMappingDocumentSimple.scala │ │ ├── RegexUtility.scala │ │ ├── SPARQLUtility.scala │ │ ├── TranslatedValue.scala │ │ ├── TriplePatternPredicateBounder.scala │ │ ├── ValueTransformator.scala │ │ ├── XMLUtility.scala │ │ ├── engine │ │ ├── AbstractQueryResultTranslator.scala │ │ ├── AbstractQueryResultTranslatorFactory.scala │ │ ├── IQueryTranslator.scala │ │ ├── IQueryTranslatorFactory.scala │ │ ├── ModelWriter.scala │ │ ├── MorphBaseDataSourceReader.scala │ │ ├── MorphBaseDataTranslator.scala │ │ ├── MorphBaseParser.scala │ │ ├── MorphBaseQueryResultWriter.scala │ │ ├── MorphBaseResultSet.scala │ │ ├── MorphBaseRunner.scala │ │ ├── MorphBaseRunnerFactory.scala │ │ ├── MorphBaseUnfolder.scala │ │ ├── QueryResultWriterFactory.scala │ │ ├── QueryTranslationOptimizer.scala │ │ ├── QueryTranslationOptimizerFactory.scala │ │ └── RDBResultSet.scala │ │ ├── materializer │ │ ├── MaterializerFactory.scala │ │ ├── MorphBaseMaterializer.scala │ │ ├── NTripleMaterializer.scala │ │ └── RDFXMLMaterializer.scala │ │ ├── model │ │ ├── IConceptMapping.scala │ │ ├── MorphBaseClassMapping.scala │ │ ├── MorphBaseLogicalTable.scala │ │ ├── MorphBaseMappingDocument.scala │ │ └── MorphBasePropertyMapping.scala │ │ └── sql │ │ ├── DatatypeMapper.scala │ │ ├── IQuery.scala │ │ ├── MorphColumnMetaData.scala │ │ ├── MorphColumnMetaDataFactory.scala │ │ ├── MorphDatabaseMetaData.scala │ │ ├── MorphInformationSchema.scala │ │ ├── MorphSQLConstant.scala │ │ ├── MorphSQLSelectItem.scala │ │ ├── MorphSQLUtility.scala │ │ ├── MorphTableMetaData.scala │ │ ├── PostgreSQLSelectItem.scala │ │ ├── SQLConstant.scala │ │ ├── SQLDataType.scala │ │ ├── SQLExpression.scala │ │ ├── SQLFromItem.scala │ │ ├── SQLJoin.scala │ │ ├── SQLJoinTable.scala │ │ ├── SQLLogicalTable.scala │ │ ├── SQLQuery.scala │ │ └── SQLUnion.scala │ └── test │ └── scala │ └── es │ └── upm │ └── fi │ └── dia │ └── oeg │ ├── core │ └── utility │ │ └── test │ │ ├── CollectionUtilityTest.scala │ │ ├── MorphValidatorTest.scala │ │ └── RegexUtilityTest.scala │ └── morph │ └── base │ └── test │ ├── DBUtilityTest.scala │ └── GithubUtilityTest.scala ├── morph-examples ├── .gitignore ├── architecture.png ├── dependency │ ├── apache-jena-libs-3.1.0.pom │ ├── collection-0.7.jar │ ├── commons-cli-1.4.jar │ ├── commons-codec-1.9.jar │ ├── commons-csv-1.5.jar │ ├── commons-io-2.5.jar │ ├── commons-lang3-3.4.jar │ ├── h2-1.4.191.jar │ ├── httpclient-4.5.2.jar │ ├── httpclient-cache-4.5.3.jar │ ├── httpcore-4.4.4.jar │ ├── httpcore-nio-4.4.4.jar │ ├── jackson-annotations-2.9.0.jar │ ├── jackson-core-2.9.0.jar │ ├── jackson-databind-2.9.0.jar │ ├── jcl-over-slf4j-1.7.25.jar │ ├── jena-arq-3.7.0.jar │ ├── jena-base-3.7.0.jar │ ├── jena-core-3.7.0.jar │ ├── jena-dboe-base-3.7.0.jar │ ├── jena-dboe-index-3.7.0.jar │ ├── jena-dboe-trans-data-3.7.0.jar │ ├── jena-dboe-transaction-3.7.0.jar │ ├── jena-iri-3.7.0.jar │ ├── jena-rdfconnection-3.7.0.jar │ ├── jena-shaded-guava-3.7.0.jar │ ├── jena-tdb-3.7.0.jar │ ├── jena-tdb2-3.7.0.jar │ ├── jsonld-java-0.11.1.jar │ ├── libthrift-0.10.0.jar │ ├── log4j-api-2.8.jar │ ├── log4j-core-2.8.jar │ ├── mirror-1.2.0.jar │ ├── mysql-connector-java-8.0.11.jar │ ├── ojdbc-14.jar │ ├── postgresql-9.1-901-1.jdbc4.jar │ ├── scala-library-2.11.12.jar │ ├── slf4j-api-1.7.20.jar │ ├── slf4j-simple-1.7.25.jar │ ├── xercesImpl-2.11.0.jar │ ├── xml-apis-1.4.01.jar │ └── zql-0.1.jar ├── examples-bsbm-mysql │ ├── Query_01.rq │ ├── Query_01.txt │ ├── batch-result.nt │ ├── batch.morph.properties │ ├── bsbm.ttl │ ├── q1-result.xml │ └── q1.morph.properties ├── examples-csv │ ├── SPORT.csv │ ├── STUDENT.csv │ ├── bruxelles_bureaux_de_tourisme.csv │ ├── csv-example1-batch.bat │ ├── csv-example1-batch.sh │ ├── csv-example1-query01.bat │ ├── csv-example1-query01.sh │ ├── csv-example1-query02.bat │ ├── csv-example1-query02.sh │ ├── csv-example1-query03.bat │ ├── csv-example1-query03.sh │ ├── csv-example1-query04.bat │ ├── csv-example1-query04.sh │ ├── csv-example1-query05.bat │ ├── csv-example1-query05.sh │ ├── csv-example1-query06.bat │ ├── csv-example1-query06.sh │ ├── edificio-historico-batch-csv.morph.properties │ ├── edificio-historico-batch-csv.sh │ ├── edificio-historico-nkau-q1.xml │ ├── edificio-historico-q1.rq │ ├── edificio-historico.csv │ ├── edificio-historico.r2rml.ttl │ ├── example1-batch-csv.morph.properties │ ├── example1-mapping-csv.ttl │ ├── example1-query01-csv.morph.properties │ ├── example1-query01.rq │ ├── example1-query02-csv.morph.properties │ ├── example1-query02.rq │ ├── example1-query03-csv.morph.properties │ ├── example1-query03.rq │ ├── example1-query04-csv.morph.properties │ ├── example1-query04.rq │ ├── example1-query05-csv.morph.properties │ ├── example1-query05-result-csv.xml │ ├── example1-query05.rq │ ├── example1-query06-csv.morph.properties │ ├── example1-query06-result-csv.xml │ ├── example1-query06.rq │ ├── linkedfiestas-batch-csv.morph.properties │ ├── linkedfiestas-batch.sh │ ├── linkedfiestas-q1.morph.properties │ ├── linkedfiestas-q1.rq │ ├── linkedfiestas-q1.sh │ ├── linkedfiestas1.csv │ ├── linkedfiestas1.r2rml.ttl │ ├── linkedfiestas2.nt │ ├── madrid-batch-csv.morph.properties │ ├── madrid1.csv │ ├── madrid1.r2rml.ttl │ ├── monumento-batch-csv.morph.properties │ ├── monumento-batch-csv.sh │ ├── monumento.csv │ ├── monumento.r2rml.ttl │ ├── openfoodfacts-example.csv │ ├── openfoodfactsexample-NPi6.xml │ ├── openfoodfactsexample.csv │ ├── paris-park.csv │ ├── paris-park.r2rml.ttl │ ├── preview.rq │ ├── query1result.xml │ ├── spain-international-batch-csv.morph.properties │ ├── spain-international1.r2rml.ttl │ ├── spain-national-batch-csv.morph.properties │ ├── spain-national1.r2rml.ttl │ ├── wikidata-batch-csv.morph.properties │ ├── wikidataFestivals1.csv │ └── wikidataFestivals1.r2rml.ttl ├── examples-epw │ ├── AthensEPWExample-batch.morph.properties │ ├── AthensEPWExample-batch.sh │ ├── AthensEPWExample-q01.morph.properties │ ├── AthensEPWExample-q02.morph.properties │ ├── AthensEPWExample-q03.morph.properties │ ├── AthensEPWExample-q1.sh │ ├── AthensEPWExample-q2.sh │ ├── AthensEPWExample-q3.sh │ ├── AthensEPWExample.csv │ ├── AthensEPWExample.r2rml.ttl │ ├── EPWExample-q01.rq │ ├── EPWExample-q02.rq │ ├── EPWExample-q03.rq │ ├── MadridEPWExample-batch.morph.properties │ ├── MadridEPWExample-batch.sh │ ├── MadridEPWExample-q01.morph.properties │ ├── MadridEPWExample-q02.morph.properties │ ├── MadridEPWExample-q03.morph.properties │ ├── MadridEPWExample-q1.sh │ ├── MadridEPWExample-q2.sh │ ├── MadridEPWExample-q3.sh │ ├── MadridEPWExample.csv │ ├── MadridEPWExample.r2rml.ttl │ └── MadridEPWExampleMappings.xlsx ├── examples-eurostat │ ├── eurostatimmigration-columns-batch-result.nt │ ├── eurostatimmigration-columns-batch.morph.properties │ ├── eurostatimmigration-columns.r2rml.ttl │ ├── eurostatimmigration-naive-batch-result.nt │ ├── eurostatimmigration-naive-batch.morph.properties │ ├── eurostatimmigration-naive.r2rml.ttl │ ├── eurostatimmigration-query1-result.xml │ ├── eurostatimmigration-query1.morph.properties │ ├── eurostatimmigration-query1.rq │ ├── eurostatimmigration-query2-result.xml │ ├── eurostatimmigration-query2.morph.properties │ ├── eurostatimmigration-query2.rq │ ├── eurostatimmigration-query3-result.xml │ ├── eurostatimmigration-query3.morph.properties │ ├── eurostatimmigration-query3.rq │ ├── eurostatimmigration-range-batch-result.nt │ ├── eurostatimmigration-range-batch.morph.properties │ ├── eurostatimmigration-range.r2rml.ttl │ ├── eurostatimmigration-template-batch-result.nt │ ├── eurostatimmigration-template-batch.morph.properties │ ├── eurostatimmigration-template.r2rml.ttl │ ├── eurostatimmigration.csv │ ├── eurostatpopulation-columns-batch-result.nt │ ├── eurostatpopulation-columns-batch.morph.properties │ ├── eurostatpopulation-columns.r2rml.ttl │ ├── eurostatpopulation-naive-batch-result.nt │ ├── eurostatpopulation-naive-batch.morph.properties │ ├── eurostatpopulation-naive.r2rml.ttl │ ├── eurostatpopulation-range-batch-result.nt │ ├── eurostatpopulation-range-batch.morph.properties │ ├── eurostatpopulation-range.r2rml.ttl │ └── eurostatpopulation.csv ├── examples-gtfs-bcn │ ├── agency.txt │ ├── barnaTram-batch-csv.morph.properties │ ├── barnaTram.r2rml.ttl │ ├── calendar.txt │ ├── calendar_dates.txt │ ├── routes.txt │ ├── shapes.txt │ ├── stop_times.txt │ ├── stops.txt │ └── trips.txt ├── examples-gtfs-mysql │ ├── gtfs-rdb.r2rml.ttl │ ├── gtfs1-batch-mysql.morph.properties │ ├── gtfs1-q01-mysql.morph.properties │ ├── gtfs1-q02-mysql.morph.properties │ ├── gtfs1-q03-mysql.morph.properties │ ├── gtfs1-q04-mysql.morph.properties │ ├── gtfs1-q05-mysql.morph.properties │ ├── gtfs1-q06-mysql.morph.properties │ ├── gtfs1-q07-mysql.morph.properties │ ├── gtfs1-q08-mysql.morph.properties │ ├── gtfs1-q09-mysql.morph.properties │ ├── gtfs1-q10-mysql.morph.properties │ ├── gtfs1-q11-mysql.morph.properties │ ├── gtfs1-q12-mysql.morph.properties │ ├── gtfs1-q13-mysql.morph.properties │ ├── gtfs1-q14-mysql.morph.properties │ ├── gtfs1-q15-mysql.morph.properties │ ├── gtfs1-q16-mysql.morph.properties │ ├── gtfs1-q17-mysql.morph.properties │ ├── gtfs1-q18-mysql.morph.properties │ ├── gtfs10-batch-mysql.morph.properties │ ├── gtfs10-q1a-mysql.morph.properties │ ├── gtfs10-q1b-mysql.morph.properties │ ├── gtfs10-q1c-mysql.morph.properties │ ├── gtfs10-q2a-mysql.morph.properties │ ├── gtfs10-q2b-mysql.morph.properties │ ├── gtfs10-q2c-mysql.morph.properties │ ├── gtfs10-q3a-mysql.morph.properties │ ├── gtfs10-q3b-mysql.morph.properties │ ├── gtfs10-q3c-mysql.morph.properties │ ├── gtfs10-q3d-mysql.morph.properties │ ├── gtfs5-batch-mysql.morph.properties │ ├── gtfs5-q1-mysql.morph.properties │ ├── gtfs5-q10-mysql.morph.properties │ ├── gtfs5-q11-mysql.morph.properties │ ├── gtfs5-q12-mysql.morph.properties │ ├── gtfs5-q13-mysql.morph.properties │ ├── gtfs5-q14-mysql.morph.properties │ ├── gtfs5-q15-mysql.morph.properties │ ├── gtfs5-q16-mysql.morph.properties │ ├── gtfs5-q17-mysql.morph.properties │ ├── gtfs5-q18-mysql.morph.properties │ ├── gtfs5-q2-mysql.morph.properties │ ├── gtfs5-q3-mysql.morph.properties │ ├── gtfs5-q4-mysql.morph.properties │ ├── gtfs5-q5-mysql.morph.properties │ ├── gtfs5-q6-mysql.morph.properties │ ├── gtfs5-q7-mysql.morph.properties │ ├── gtfs5-q8-mysql.morph.properties │ ├── gtfs5-q9-mysql.morph.properties │ ├── original │ │ ├── q1.rq │ │ ├── q10.rq │ │ ├── q11.rq │ │ ├── q12.rq │ │ ├── q13.rq │ │ ├── q14.rq │ │ ├── q15.rq │ │ ├── q16.rq │ │ ├── q17.rq │ │ ├── q18.rq │ │ ├── q2.rq │ │ ├── q3.rq │ │ ├── q4.rq │ │ ├── q5.rq │ │ ├── q6.rq │ │ ├── q7.rq │ │ ├── q8.rq │ │ └── q9.rq │ ├── schema.sql │ └── vig │ │ ├── q1.rq │ │ ├── q10.rq │ │ ├── q11.rq │ │ ├── q12.rq │ │ ├── q13.rq │ │ ├── q14.rq │ │ ├── q15.rq │ │ ├── q16.rq │ │ ├── q17.rq │ │ ├── q18.rq │ │ ├── q2.rq │ │ ├── q3.rq │ │ ├── q4.rq │ │ ├── q5.rq │ │ ├── q6.rq │ │ ├── q7.rq │ │ ├── q8.rq │ │ └── q9.rq ├── examples-gtfs │ ├── gtfs.r2rml.ttl │ └── gtfsmadrid-batch-csv.morph.properties ├── examples-h2 │ ├── example1-batch-h2.r2rml.properties │ ├── example1-batch-result-h2.nt │ ├── example1-batch-result-h2.xml │ ├── example1-mapping-h2.ttl │ ├── example1-mapping-h2b.ttl │ ├── example1-query01-h2.r2rml.properties │ ├── example1-query01-result-h2.xml │ ├── example1-query01.rq │ ├── example1-query02-h2.r2rml.properties │ ├── example1-query02-result-h2.xml │ ├── example1-query02.rq │ ├── example1-query03-h2.r2rml.properties │ ├── example1-query03-result-h2.xml │ ├── example1-query03.rq │ ├── example1-query04-h2.r2rml.properties │ ├── example1-query04-result-h2.xml │ ├── example1-query04.rq │ ├── example1-query05-h2.r2rml.properties │ ├── example1-query05-result-h2.xml │ ├── example1-query05.rq │ ├── example1-query06-result-h2.xml │ ├── h2-example1-batch.bat │ ├── h2-example1-batch.sh │ ├── h2-example1-query01.bat │ ├── h2-example1-query01.sh │ ├── h2-example1-query02.bat │ ├── h2-example1-query02.sh │ ├── h2-example1-query03.bat │ ├── h2-example1-query03.sh │ ├── h2-example1-query04.bat │ ├── h2-example1-query04.sh │ ├── h2-example1-query05.bat │ ├── h2-example1-query05.sh │ ├── morph-example.h2.db │ └── morph-example.trace.db ├── examples-mysql │ ├── Dockerfile │ ├── compose.sh │ ├── docker-compose.yml │ ├── edificiohistorico-batch-result-mysql.nt │ ├── edificiohistorico-mysql.r2rml.ttl │ ├── edificiohistoricos-batch-mysql.morph.properties │ ├── example1-batch-mysql.morph.properties │ ├── example1-batch-result-mysql.nt │ ├── example1-mapping-mysql.ttl │ ├── example1-query01-mysql.morph.properties │ ├── example1-query01-result-mysql.xml │ ├── example1-query01.rq │ ├── example1-query02-mysql.morph.properties │ ├── example1-query02-result-mysql.xml │ ├── example1-query02.rq │ ├── example1-query03-mysql.morph.properties │ ├── example1-query03-result-mysql.xml │ ├── example1-query03.rq │ ├── example1-query04-mysql.morph.properties │ ├── example1-query04-result-mysql.xml │ ├── example1-query04.rq │ ├── example1-query05-mysql.morph.properties │ ├── example1-query05-result-mysql.xml │ ├── example1-query05.rq │ ├── example1-query06-mysql.morph.properties │ ├── example1-query06-result-mysql.xml │ ├── example1-query06.rq │ ├── example2-batch-mysql.morph.properties │ ├── example2-batch-result-mysql.nt │ ├── example2-mapping-mysql.ttl │ ├── example2-query07-mysql.morph.properties │ ├── example2-query07-result-mysql.xml │ ├── example2-query07.rq │ ├── monumento-batch-result-mysql.nt │ ├── monumento-mysql.r2rml.ttl │ ├── monuments-batch-mysql.morph.properties │ ├── morph_example.sql │ ├── mysql-example1-batch.bat │ ├── mysql-example1-batch.sh │ ├── mysql-example1-query01.bat │ ├── mysql-example1-query01.sh │ ├── mysql-example1-query02.bat │ ├── mysql-example1-query02.sh │ ├── mysql-example1-query03.bat │ ├── mysql-example1-query03.sh │ ├── mysql-example1-query04.bat │ ├── mysql-example1-query04.sh │ ├── mysql-example1-query05.bat │ ├── mysql-example1-query05.sh │ ├── mysql-example2-batch.bat │ ├── mysql-example2-query07.bat │ ├── run.sh │ └── sql-scripts │ │ ├── Dockerfile │ │ ├── morph_example.sql │ │ ├── run.bat │ │ └── run.sh ├── examples-oracle │ ├── example1-batch-oracle.bat │ ├── example1-batch-oracle.morph.properties │ ├── example1-batch-oracle.sh │ ├── example1-batch-result-oracle.nt │ ├── example1-mapping-oracle.ttl │ ├── example1-query01-oracle.bat │ ├── example1-query01-oracle.morph.properties │ ├── example1-query01-oracle.sh │ ├── example1-query01-result-oracle.xml │ ├── example1-query01.rq │ ├── example1-query02-oracle.bat │ ├── example1-query02-oracle.morph.properties │ ├── example1-query02-oracle.sh │ ├── example1-query02-result-oracle.xml │ ├── example1-query02.rq │ ├── example1-query03-oracle.bat │ ├── example1-query03-oracle.morph.properties │ ├── example1-query03-oracle.sh │ ├── example1-query03-result-oracle.xml │ ├── example1-query03.rq │ ├── example1-query04-oracle.bat │ ├── example1-query04-oracle.morph.properties │ ├── example1-query04-oracle.sh │ ├── example1-query04-result-oracle.xml │ ├── example1-query04.rq │ ├── example1-query05-oracle.bat │ ├── example1-query05-oracle.morph.properties │ ├── example1-query05-oracle.sh │ ├── example1-query05-result-oracle.xml │ └── example1-query05.rq ├── examples-postgresql │ ├── TMclinicaltrials-short.r2rml.ttl │ ├── aact-query1-result.nt │ ├── aact-query1.r2rml.properties.txt │ ├── aact-query1.rq │ ├── aact-query1.sh │ ├── batch-postgresql-result.nt │ ├── batch-postgresql.morph.properties │ ├── batch-postgresql2-result.nt │ ├── batch-postgresql2.r2rml.properties │ ├── example(posgresql).ttl │ ├── example1-query01.rq │ ├── example1-query02.rq │ ├── example1-query03.rq │ ├── example1-query04.rq │ ├── example1-query05.rq │ ├── example1-query06.rq │ ├── example2(posgresql).ttl │ ├── morph_example(postgresql).sql │ ├── query01-postgresql-result.xml │ ├── query01postgresql.morph.properties │ ├── query02-postgresql-result.xml │ ├── query02postgresql.morph.properties │ ├── query03-postgresql-result.xml │ ├── query03postgresql.morph.properties │ ├── query04-postgresql-result.xml │ ├── query04postgresql.morph.properties │ ├── query05-postgresql-result.xml │ ├── query05postgresql.morph.properties │ ├── query06-postgresql-result.xml │ ├── query06postgresql.morph.properties │ ├── query11-postgresql-result.xml │ ├── query11postgresql2.r2rml.properties │ ├── query12-postgresql-result.xml │ └── query12postgresql2.r2rml.properties ├── examples-srilanka-tourism │ ├── 2012-P21-batch-csv.morph.properties │ ├── 2012-P21.csv │ ├── 2012-P21.r2rml.ttl │ ├── 2013-P21-batch-csv.morph.properties │ ├── 2013-P21.csv │ ├── 2013-P21.r2rml.ttl │ ├── 2014-P21-batch-csv.morph.properties │ ├── 2014-P21.csv │ ├── 2014-P21.r2rml.ttl │ ├── 2015-P23-batch-csv.morph.properties │ ├── 2015-P23.csv │ ├── 2015-P23.r2rml.ttl │ ├── 2016-P21-Transposed.csv │ ├── 2016-P21-Transposed.r2rml.ttl │ ├── 2016-P21-columns-batch-result.nt │ ├── 2016-P21-columns-batch.morph.properties │ ├── 2016-P21-columns-query1-result.xml │ ├── 2016-P21-columns-query1.morph.properties │ ├── 2016-P21-columns-query2-result.xml │ ├── 2016-P21-columns-query2.morph.properties │ ├── 2016-P21-columns-query3-result.xml │ ├── 2016-P21-columns-query3.morph.properties │ ├── 2016-P21-columns.r2rml.ttl │ ├── 2016-P21-columns.rmlc.ttl │ ├── 2016-P21-naive-batch-result.nt │ ├── 2016-P21-naive-batch.morph.properties │ ├── 2016-P21-naive-query1-result.xml │ ├── 2016-P21-naive-query1.morph.properties │ ├── 2016-P21-naive-query2-result.xml │ ├── 2016-P21-naive-query2.morph.properties │ ├── 2016-P21-naive-query3-result.xml │ ├── 2016-P21-naive-query3.morph.properties │ ├── 2016-P21-naive-transposed-batch.morph.properties │ ├── 2016-P21-naive-transposed-query1.morph.properties │ ├── 2016-P21-naive-transposed-query2.morph.properties │ ├── 2016-P21-naive-transposed-query3.morph.properties │ ├── 2016-P21-naive.r2rml.ttl │ ├── 2016-P21-query1.rq │ ├── 2016-P21-query1.sql │ ├── 2016-P21-query2.rq │ ├── 2016-P21-query2.sql │ ├── 2016-P21-query3.rq │ ├── 2016-P21-query3.sql │ ├── 2016-P21-range-batch-result.nt │ ├── 2016-P21-range-batch.morph.properties │ ├── 2016-P21-range-query1-result.xml │ ├── 2016-P21-range-query1.morph.properties │ ├── 2016-P21-range-query2-result.xml │ ├── 2016-P21-range-query2.morph.properties │ ├── 2016-P21-range-query3-result.xml │ ├── 2016-P21-range-query3.morph.properties │ ├── 2016-P21-range.r2rml.ttl │ ├── 2016-P21-range.rmlc.ttl │ ├── 2016-P21-transposed-naive-batch-result.nt │ └── 2016-P21.csv ├── examples-stat-wales │ ├── StatWales.csv │ └── StatWales.r2rml.ttl ├── examples │ ├── PatientOntoBGP-result.xml │ ├── PatientOntoBGP.q │ ├── PatientOntoOSTG-result.xml │ ├── PatientOntoOSTG.q │ ├── PatientOntoPT-result.xml │ ├── PatientOntoPT.q │ ├── PatientOntoSTG-result.xml │ ├── PatientOntoSTG.q │ ├── PatientOntoTP-result.xml │ ├── PatientOntoTP.q │ ├── batch-oracle-result.nt │ ├── batch-oracle.r2rml.properties │ ├── example-oracle.ttl │ ├── example_patient.ttl │ ├── example_patientBGP.r2rml.properties │ ├── example_patientOSTG.r2rml.properties │ ├── example_patientPT.r2rml.properties │ ├── example_patientSTG.r2rml.properties │ ├── example_patientTP.r2rml.properties │ ├── example_university.r2rml.properties │ ├── query11.sparql │ ├── query12.sparql │ ├── querypatient01-result.xml │ └── querypatient01.sparql ├── log4j2.xml ├── morph-rdb-dist-3.9.16.jar ├── morph-rdb-dist-3.9.17.jar ├── morph-rdb.jar ├── pom.xml ├── src │ ├── main │ │ └── resources │ │ │ ├── log4j.properties │ │ │ └── log4j2.xml │ └── test │ │ ├── java │ │ ├── es │ │ │ └── upm │ │ │ │ └── fi │ │ │ │ └── dia │ │ │ │ └── oeg │ │ │ │ └── morph │ │ │ │ ├── example │ │ │ │ ├── ExampleBSBMMySQL.java │ │ │ │ ├── ExampleCSV.java │ │ │ │ ├── ExampleEPW.java │ │ │ │ ├── ExampleEuroStatImmigration.java │ │ │ │ ├── ExampleEuroStatPopulation.java │ │ │ │ ├── ExampleGTFSMySQL.java │ │ │ │ ├── ExampleMadridGTFS1MySQL.java │ │ │ │ ├── ExampleMadridGTFS5MySQL.java │ │ │ │ ├── ExampleSrilankaTourism.java │ │ │ │ ├── ExampleWithPropertiesFile.java │ │ │ │ ├── ExampleWithPropertiesFileH2.java │ │ │ │ ├── ExampleWithPropertiesFileMySQL.java │ │ │ │ ├── ExampleWithPropertiesFileOracle.java │ │ │ │ ├── ExampleWithPropertiesFilePostgreSQL.java │ │ │ │ └── ExampleWithoutPropertiesFile.java │ │ │ │ └── testcase │ │ │ │ ├── DMTS.java │ │ │ │ ├── R2RMLTS.java │ │ │ │ ├── R2RMLTS_Oracle.java │ │ │ │ └── R2RMLTS_Postgresql.java │ │ └── log4j.properties │ │ └── log4j.properties ├── testcases-mysql │ ├── D000-1table1column0rows │ │ ├── create.mysql.sql │ │ ├── create.sql │ │ ├── d000.sql │ │ ├── directGraph.ttl │ │ ├── manifest.ttl │ │ ├── mapped.nq │ │ └── r2rml.ttl │ ├── D001-1table1column1row │ │ ├── create.mysql.sql │ │ ├── create.sql │ │ ├── d001.sql │ │ ├── directGraph.ttl │ │ ├── manifest.ttl │ │ ├── mappeda-morph.nq │ │ ├── mappeda.nq │ │ ├── mappedb-morph.nq │ │ ├── mappedb.nq │ │ ├── r2rmla.ttl │ │ └── r2rmlb.ttl │ ├── D002-1table2columns1row │ │ ├── create.mysql.sql │ │ ├── create.sql │ │ ├── d002.sql │ │ ├── directGraph.ttl │ │ ├── manifest.ttl │ │ ├── mappeda-morph.nq │ │ ├── mappeda.nq │ │ ├── mappedb-morph.nq │ │ ├── mappedb.nq │ │ ├── mappedc-morph.nq │ │ ├── mappedd-morph.nq │ │ ├── mappedd.nq │ │ ├── mappede-morph.nq │ │ ├── mappedf-morph.nq │ │ ├── mappedg-morph.nq │ │ ├── mappedh-morph.nq │ │ ├── mappedi-morph.nq │ │ ├── mappedi.nq │ │ ├── mappedj-morph.nq │ │ ├── mappedj.nq │ │ ├── r2rmla.ttl │ │ ├── r2rmlb.ttl │ │ ├── r2rmlc.ttl │ │ ├── r2rmld-mysql.ttl │ │ ├── r2rmld.ttl │ │ ├── r2rmle.ttl │ │ ├── r2rmlf.ttl │ │ ├── r2rmlg.ttl │ │ ├── r2rmlh.ttl │ │ ├── r2rmli.ttl │ │ └── r2rmlj.ttl │ ├── D003-1table3columns1row │ │ ├── create.mysql.sql │ │ ├── create.sql │ │ ├── d003.sql │ │ ├── directGraph.ttl │ │ ├── manifest.ttl │ │ ├── mappeda-morph.nq │ │ ├── mappedb-morph.nq │ │ ├── mappedb.nq │ │ ├── mappedc-morph.nq │ │ ├── mappedc.nq │ │ ├── r2rmla.ttl │ │ ├── r2rmlb.ttl │ │ ├── r2rmlb2.ttl │ │ └── r2rmlc.ttl │ ├── D004-1table2columns1row │ │ ├── create.mysql.sql │ │ ├── create.sql │ │ ├── d004.sql │ │ ├── directGraph.ttl │ │ ├── manifest.ttl │ │ ├── mappeda-morph.nq │ │ ├── mappeda.nq │ │ ├── r2rmla.ttl │ │ └── r2rmlb.ttl │ ├── D005-1table3columns3rows2duplicates │ │ ├── create.mysql.sql │ │ ├── create.sql │ │ ├── d005.sql │ │ ├── directGraph.ttl │ │ ├── manifest.ttl │ │ ├── mappeda-morph.nq │ │ ├── mappeda.nq │ │ ├── mappedb-morph.nq │ │ ├── mappedb.nq │ │ ├── r2rmla.ttl │ │ └── r2rmlb.ttl │ ├── D006-1table1primarykey1column1row │ │ ├── create.mysql.sql │ │ ├── create.sql │ │ ├── d006.sql │ │ ├── directGraph.ttl │ │ ├── manifest.ttl │ │ ├── mappeda-morph.nq │ │ ├── mappeda.nq │ │ └── r2rmla.ttl │ ├── D007-1table1primarykey2columns1row │ │ ├── create.mysql.sql │ │ ├── create.sql │ │ ├── d007.sql │ │ ├── directGraph.ttl │ │ ├── manifest.ttl │ │ ├── mappeda-morph.nq │ │ ├── mappeda.nq │ │ ├── mappedb-morph.nq │ │ ├── mappedb.nq │ │ ├── mappedc-morph.nq │ │ ├── mappedc.nq │ │ ├── mappedd-morph.nq │ │ ├── mappedd.nq │ │ ├── mappede-morph.nq │ │ ├── mappede.nq │ │ ├── mappedf-morph.nq │ │ ├── mappedf.nq │ │ ├── mappedg-morph.nq │ │ ├── mappedg.nq │ │ ├── mappedh.nq │ │ ├── r2rmla.ttl │ │ ├── r2rmlb.ttl │ │ ├── r2rmlc.ttl │ │ ├── r2rmld.ttl │ │ ├── r2rmle.ttl │ │ ├── r2rmlf.ttl │ │ ├── r2rmlg.ttl │ │ ├── r2rmlh.ttl │ │ └── r2rmli.ttl │ ├── D008-1table1compositeprimarykey3columns1row │ │ ├── create.mysql.sql │ │ ├── create.sql │ │ ├── d008.sql │ │ ├── directGraph.ttl │ │ ├── manifest.ttl │ │ ├── mappeda-morph.nq │ │ ├── mappeda.nq │ │ ├── mappedb-morph.nq │ │ ├── mappedb.nq │ │ ├── mappedc-morph.nq │ │ ├── mappedc.nq │ │ ├── r2rmla.ttl │ │ ├── r2rmlb.ttl │ │ └── r2rmlc.ttl │ ├── D009-2tables1primarykey1foreignkey │ │ ├── create.mysql.sql │ │ ├── create.sql │ │ ├── d009.sql │ │ ├── directGraph.ttl │ │ ├── manifest.ttl │ │ ├── mappeda-morph.nq │ │ ├── mappeda.nq │ │ ├── mappedb-morph.nq │ │ ├── mappedb.nq │ │ ├── mappedc-morph.nq │ │ ├── mappedc.nq │ │ ├── mappedd-morph.nq │ │ ├── mappedd.nq │ │ ├── r2rmla.ttl │ │ ├── r2rmlb.ttl │ │ ├── r2rmlc.ttl │ │ └── r2rmld.ttl │ ├── D010-1table1primarykey3colums3rows │ │ ├── create.mysql.sql │ │ ├── create.sql │ │ ├── d010.sql │ │ ├── directGraph.ttl │ │ ├── manifest.ttl │ │ ├── mappeda-morph.nq │ │ ├── mappeda.nq │ │ ├── mappedb-morph.nq │ │ ├── mappedb.nq │ │ ├── mappedc-morph.nq │ │ ├── mappedc.nq │ │ ├── r2rmla.ttl │ │ ├── r2rmlb.ttl │ │ └── r2rmlc.ttl │ ├── D011-M2MRelations │ │ ├── create.mysql.sql │ │ ├── create.sql │ │ ├── d011.sql │ │ ├── d011b.sql │ │ ├── directGraph.ttl │ │ ├── manifest.ttl │ │ ├── mappeda-morph.nq │ │ ├── mappeda.nq │ │ ├── mappedb-morph.nq │ │ ├── mappedb.nq │ │ ├── r2rmla.ttl │ │ └── r2rmlb.ttl │ ├── D012-2tables2duplicates0nulls │ │ ├── create.mysql.sql │ │ ├── create.sql │ │ ├── d012.sql │ │ ├── directGraph.ttl │ │ ├── manifest.ttl │ │ ├── mappeda-morph.nq │ │ ├── mappeda.nq │ │ ├── mappedb-morph.nq │ │ ├── mappedb.nq │ │ ├── mappede-morph.nq │ │ ├── mappede.nq │ │ ├── r2rmla.ttl │ │ ├── r2rmlb.ttl │ │ ├── r2rmlc.ttl │ │ ├── r2rmld.ttl │ │ └── r2rmle.ttl │ ├── D013-1table1primarykey3columns2rows1nullvalue │ │ ├── create.mysql.sql │ │ ├── create.sql │ │ ├── d013.sql │ │ ├── directGraph.ttl │ │ ├── manifest.ttl │ │ ├── mappeda-morph.nq │ │ ├── mappeda.nq │ │ └── r2rmla.ttl │ ├── D014-3tables1primarykey1foreignkey │ │ ├── create.mysql.sql │ │ ├── create.sql │ │ ├── d014.sql │ │ ├── directGraph.ttl │ │ ├── manifest.ttl │ │ ├── mappeda-morph.nq │ │ ├── mappeda.nq │ │ ├── mappedb-morph.nq │ │ ├── mappedb.nq │ │ ├── mappedc-morph.nq │ │ ├── mappedc.nq │ │ ├── mappedd-morph.nq │ │ ├── mappedd.nq │ │ ├── r2rmla.mysql.ttl │ │ ├── r2rmla.ttl │ │ ├── r2rmlb.mysql.ttl │ │ ├── r2rmlb.ttl │ │ ├── r2rmlc.ttl │ │ └── r2rmld.ttl │ ├── D015-1table3columns1composityeprimarykey3rows2languages │ │ ├── create.mysql.sql │ │ ├── create.sql │ │ ├── d015.sql │ │ ├── directGraph.ttl │ │ ├── manifest.ttl │ │ ├── mappeda-morph.nq │ │ ├── mappeda.nq │ │ ├── mappedb-morph.nq │ │ ├── r2rmla.ttl │ │ └── r2rmlb.ttl │ ├── D016-1table1primarykey10columns3rowsSQLdatatypes │ │ ├── create.mysql.sql │ │ ├── create.sql │ │ ├── d016.sql │ │ ├── directGraph.ttl │ │ ├── manifest.ttl │ │ ├── mappeda-morph.nq │ │ ├── mappeda.nq │ │ ├── mappedb-morph.nq │ │ ├── mappedb.nq │ │ ├── mappedc-morph.nq │ │ ├── mappedc.nq │ │ ├── mappedd-morph.nq │ │ ├── mappedd.nq │ │ ├── mappede-morph.nq │ │ ├── mappede.nq │ │ ├── r2rmla.ttl │ │ ├── r2rmlb.ttl │ │ ├── r2rmlc.ttl │ │ ├── r2rmld.ttl │ │ └── r2rmle.ttl │ ├── D017-I18NnoSpecialChars │ │ ├── create.mysql.sql │ │ ├── create.sql │ │ ├── directGraph.ttl │ │ └── manifest.ttl │ ├── D018-1table1primarykey2columns3rows │ │ ├── create.mysql.sql │ │ ├── create.sql │ │ ├── d018.sql │ │ ├── directGraph.ttl │ │ ├── manifest.ttl │ │ ├── mappeda-morph.nq │ │ ├── mappeda.nq │ │ └── r2rmla.ttl │ ├── D019-1table1primarykey3columns3rows │ │ ├── create.mysql.sql │ │ ├── create.sql │ │ ├── d019.sql │ │ ├── manifest.ttl │ │ ├── mappeda-morph.nq │ │ ├── mappeda.nq │ │ ├── mappedb-morph.nq │ │ ├── r2rmla.ttl │ │ └── r2rmlb.ttl │ ├── D020-1table1column5rows │ │ ├── create.mysql.sql │ │ ├── d020.sql │ │ ├── manifest.ttl │ │ ├── mappeda-morph.nq │ │ ├── mappeda.nq │ │ ├── mappedb-morph.nq │ │ ├── r2rmla.ttl │ │ └── r2rmlb.ttl │ ├── D021-2tables2primarykeys1foreignkeyReferencesAllNulls │ │ ├── create.sql │ │ ├── directGraph.ttl │ │ └── manifest.ttl │ ├── D022-2tables1primarykey1foreignkeyReferencesNoPrimaryKey │ │ ├── create.sql │ │ ├── directGraph.ttl │ │ └── manifest.ttl │ ├── D023-2tables2primarykeys2foreignkeysReferencesToNon-primarykeys │ │ ├── create.sql │ │ ├── directGraph.ttl │ │ └── manifest.ttl │ ├── D024-2tables2primarykeys1foreignkeyToARowWithSomeNulls │ │ ├── create.sql │ │ ├── directGraph.ttl │ │ └── manifest.ttl │ ├── D025-3tables3primarykeys3foreignkeys │ │ ├── create.sql │ │ ├── directGraph.ttl │ │ └── manifest.ttl │ ├── DirectGraphTC0000.bat │ ├── DirectGraphTC0000.morph.properties │ ├── DirectGraphTC0000.sh │ ├── DirectGraphTC0001.bat │ ├── DirectGraphTC0001.morph.properties │ ├── DirectGraphTC0001.sh │ ├── DirectGraphTC0002.bat │ ├── DirectGraphTC0002.morph.properties │ ├── DirectGraphTC0002.sh │ ├── DirectGraphTC0003.bat │ ├── DirectGraphTC0003.morph.properties │ ├── DirectGraphTC0003.sh │ ├── DirectGraphTC0004.bat │ ├── DirectGraphTC0004.morph.properties │ ├── DirectGraphTC0004.sh │ ├── DirectGraphTC0005.bat │ ├── DirectGraphTC0005.morph.properties │ ├── DirectGraphTC0005.sh │ ├── DirectGraphTC0006.bat │ ├── DirectGraphTC0006.morph.properties │ ├── DirectGraphTC0006.sh │ ├── DirectGraphTC0007.bat │ ├── DirectGraphTC0007.morph.properties │ ├── DirectGraphTC0007.sh │ ├── DirectGraphTC0008.bat │ ├── DirectGraphTC0008.morph.properties │ ├── DirectGraphTC0008.sh │ ├── DirectGraphTC0009.bat │ ├── DirectGraphTC0009.morph.properties │ ├── DirectGraphTC0009.sh │ ├── DirectGraphTC0010.bat │ ├── DirectGraphTC0010.morph.properties │ ├── DirectGraphTC0010.sh │ ├── DirectGraphTC0011.bat │ ├── DirectGraphTC0011.morph.properties │ ├── DirectGraphTC0011.sh │ ├── DirectGraphTC0011b.morph.properties │ ├── DirectGraphTC0011b.sh │ ├── DirectGraphTC0012.bat │ ├── DirectGraphTC0012.morph.properties │ ├── DirectGraphTC0012.sh │ ├── DirectGraphTC0013.bat │ ├── DirectGraphTC0013.morph.properties │ ├── DirectGraphTC0013.sh │ ├── DirectGraphTC0014.bat │ ├── DirectGraphTC0014.morph.properties │ ├── DirectGraphTC0014.sh │ ├── DirectGraphTC0015.bat │ ├── DirectGraphTC0015.morph.properties │ ├── DirectGraphTC0015.sh │ ├── DirectGraphTC0016.bat │ ├── DirectGraphTC0016.morph.properties │ ├── DirectGraphTC0016.sh │ ├── DirectGraphTC0017.morph.properties │ ├── DirectGraphTC0017.sh │ ├── DirectGraphTC0018.bat │ ├── DirectGraphTC0018.morph.properties │ ├── DirectGraphTC0018.sh │ ├── DirectGraphTC0019.bat │ ├── DirectGraphTC0019.morph.properties │ ├── DirectGraphTC0019.sh │ ├── DirectGraphTC0020.bat │ ├── DirectGraphTC0020.morph.properties │ ├── DirectGraphTC0020.sh │ ├── R2RMLTC0001a-oracle.morph.properties │ ├── R2RMLTC0001a.morph.properties │ ├── R2RMLTC0001b.morph.properties │ ├── R2RMLTC0002a.morph.properties │ ├── R2RMLTC0002b.morph.properties │ ├── R2RMLTC0002c.morph.properties │ ├── R2RMLTC0002d.morph.properties │ ├── R2RMLTC0002e.morph.properties │ ├── R2RMLTC0002f.morph.properties │ ├── R2RMLTC0002g.morph.properties │ ├── R2RMLTC0002h.morph.properties │ ├── R2RMLTC0002i.morph.properties │ ├── R2RMLTC0002j.morph.properties │ ├── R2RMLTC0003a.morph.properties │ ├── R2RMLTC0003b.morph.properties │ ├── R2RMLTC0003c.morph.properties │ ├── R2RMLTC0004a.morph.properties │ ├── R2RMLTC0004b.morph.properties │ ├── R2RMLTC0005a.morph.properties │ ├── R2RMLTC0005b.morph.properties │ ├── R2RMLTC0006a.morph.properties │ ├── R2RMLTC0007a.morph.properties │ ├── R2RMLTC0007b.morph.properties │ ├── R2RMLTC0007c.morph.properties │ ├── R2RMLTC0007d.morph.properties │ ├── R2RMLTC0007e.morph.properties │ ├── R2RMLTC0007f.morph.properties │ ├── R2RMLTC0007g.morph.properties │ ├── R2RMLTC0007h.morph.properties │ ├── R2RMLTC0007i.morph.properties │ ├── R2RMLTC0008a.morph.properties │ ├── R2RMLTC0008b.morph.properties │ ├── R2RMLTC0008c.morph.properties │ ├── R2RMLTC0009a.morph.properties │ ├── R2RMLTC0009b.morph.properties │ ├── R2RMLTC0009c.morph.properties │ ├── R2RMLTC0009d.morph.properties │ ├── R2RMLTC0010a.morph.properties │ ├── R2RMLTC0010b.morph.properties │ ├── R2RMLTC0010c.morph.properties │ ├── R2RMLTC0011a.morph.properties │ ├── R2RMLTC0011b.morph.properties │ ├── R2RMLTC0012a.morph.properties │ ├── R2RMLTC0012b.morph.properties │ ├── R2RMLTC0012c.morph.properties │ ├── R2RMLTC0012d.morph.properties │ ├── R2RMLTC0012e.morph.properties │ ├── R2RMLTC0013a.morph.properties │ ├── R2RMLTC0014a.morph.properties │ ├── R2RMLTC0014b.morph.properties │ ├── R2RMLTC0014c.morph.properties │ ├── R2RMLTC0014d.morph.properties │ ├── R2RMLTC0015a.morph.properties │ ├── R2RMLTC0015b.morph.properties │ ├── R2RMLTC0016a.morph.properties │ ├── R2RMLTC0016b.morph.properties │ ├── R2RMLTC0016c.morph.properties │ ├── R2RMLTC0016d.morph.properties │ ├── R2RMLTC0016e.morph.properties │ ├── R2RMLTC0018a.morph.properties │ ├── R2RMLTC0019a.morph.properties │ ├── R2RMLTC0019b.morph.properties │ ├── R2RMLTC0020a.morph.properties │ ├── R2RMLTC0020b.morph.properties │ ├── d011b.sql │ └── d017-mappings.ttl ├── testcases-oracle │ ├── D000-1table1column0rows │ │ ├── create.mysql.sql │ │ ├── create.sql │ │ ├── d000.sql │ │ ├── directGraph.ttl │ │ ├── manifest.ttl │ │ ├── mapped.nq │ │ └── r2rml.ttl │ ├── D001-1table1column1row │ │ ├── create.mysql.sql │ │ ├── create.sql │ │ ├── d001.sql │ │ ├── directGraph.ttl │ │ ├── manifest.ttl │ │ ├── mappeda-morph.nq │ │ ├── mappeda.nq │ │ ├── mappedb-morph.nq │ │ ├── mappedb.nq │ │ ├── r2rmla.ttl │ │ └── r2rmlb.ttl │ ├── D002-1table2columns1row │ │ ├── create.mysql.sql │ │ ├── create.sql │ │ ├── d002.sql │ │ ├── directGraph.ttl │ │ ├── manifest.ttl │ │ ├── mappeda-morph.nq │ │ ├── mappeda.nq │ │ ├── mappedb-morph.nq │ │ ├── mappedb.nq │ │ ├── mappedc-morph.nq │ │ ├── mappedd-morph.nq │ │ ├── mappedd.nq │ │ ├── mappede-morph.nq │ │ ├── mappedf-morph.nq │ │ ├── mappedg-morph.nq │ │ ├── mappedh-morph.nq │ │ ├── mappedi-morph.nq │ │ ├── mappedi.nq │ │ ├── mappedj-morph.nq │ │ ├── mappedj.nq │ │ ├── r2rmla.ttl │ │ ├── r2rmlb.ttl │ │ ├── r2rmlc.ttl │ │ ├── r2rmld-mysql.ttl │ │ ├── r2rmld.ttl │ │ ├── r2rmle.ttl │ │ ├── r2rmlf.ttl │ │ ├── r2rmlg.ttl │ │ ├── r2rmlh.ttl │ │ ├── r2rmli.ttl │ │ └── r2rmlj.ttl │ ├── D003-1table3columns1row │ │ ├── create.mysql.sql │ │ ├── create.sql │ │ ├── d003.sql │ │ ├── directGraph.ttl │ │ ├── manifest.ttl │ │ ├── mappeda-morph.nq │ │ ├── mappedb-morph.nq │ │ ├── mappedb.nq │ │ ├── mappedc-morph.nq │ │ ├── mappedc.nq │ │ ├── r2rmla.ttl │ │ ├── r2rmlb.ttl │ │ ├── r2rmlb2.ttl │ │ └── r2rmlc.ttl │ ├── D004-1table2columns1row │ │ ├── create.mysql.sql │ │ ├── create.sql │ │ ├── d004.sql │ │ ├── directGraph.ttl │ │ ├── manifest.ttl │ │ ├── mappeda-morph.nq │ │ ├── mappeda.nq │ │ ├── r2rmla.ttl │ │ └── r2rmlb.ttl │ ├── D005-1table3columns3rows2duplicates │ │ ├── create.mysql.sql │ │ ├── create.sql │ │ ├── d005.sql │ │ ├── directGraph.ttl │ │ ├── manifest.ttl │ │ ├── mappeda-morph.nq │ │ ├── mappeda.nq │ │ ├── mappedb-morph.nq │ │ ├── mappedb.nq │ │ ├── r2rmla.ttl │ │ └── r2rmlb.ttl │ ├── D006-1table1primarykey1column1row │ │ ├── create.mysql.sql │ │ ├── create.sql │ │ ├── d006.sql │ │ ├── directGraph.ttl │ │ ├── manifest.ttl │ │ ├── mappeda-morph.nq │ │ ├── mappeda.nq │ │ └── r2rmla.ttl │ ├── D007-1table1primarykey2columns1row │ │ ├── create.mysql.sql │ │ ├── create.sql │ │ ├── d007.sql │ │ ├── directGraph.ttl │ │ ├── manifest.ttl │ │ ├── mappeda-morph.nq │ │ ├── mappeda.nq │ │ ├── mappedb-morph.nq │ │ ├── mappedb.nq │ │ ├── mappedc-morph.nq │ │ ├── mappedc.nq │ │ ├── mappedd-morph.nq │ │ ├── mappedd.nq │ │ ├── mappede-morph.nq │ │ ├── mappede.nq │ │ ├── mappedf-morph.nq │ │ ├── mappedf.nq │ │ ├── mappedg-morph.nq │ │ ├── mappedg.nq │ │ ├── mappedh.nq │ │ ├── r2rmla.ttl │ │ ├── r2rmlb.ttl │ │ ├── r2rmlc.ttl │ │ ├── r2rmld.ttl │ │ ├── r2rmle.ttl │ │ ├── r2rmlf.ttl │ │ ├── r2rmlg.ttl │ │ ├── r2rmlh.ttl │ │ └── r2rmli.ttl │ ├── D008-1table1compositeprimarykey3columns1row │ │ ├── create.mysql.sql │ │ ├── create.sql │ │ ├── d008.sql │ │ ├── directGraph.ttl │ │ ├── manifest.ttl │ │ ├── mappeda-morph.nq │ │ ├── mappeda.nq │ │ ├── mappedb-morph.nq │ │ ├── mappedb.nq │ │ ├── mappedc-morph.nq │ │ ├── mappedc.nq │ │ ├── r2rmla.ttl │ │ ├── r2rmlb.ttl │ │ └── r2rmlc.ttl │ ├── D009-2tables1primarykey1foreignkey │ │ ├── create.mysql.sql │ │ ├── create.sql │ │ ├── d009.sql │ │ ├── directGraph.ttl │ │ ├── manifest.ttl │ │ ├── mappeda-morph.nq │ │ ├── mappeda.nq │ │ ├── mappedb-morph.nq │ │ ├── mappedb.nq │ │ ├── mappedc-morph.nq │ │ ├── mappedc.nq │ │ ├── mappedd-morph.nq │ │ ├── mappedd.nq │ │ ├── r2rmla.ttl │ │ ├── r2rmlb.ttl │ │ ├── r2rmlc.ttl │ │ └── r2rmld.ttl │ ├── D010-1table1primarykey3colums3rows │ │ ├── create.mysql.sql │ │ ├── create.sql │ │ ├── d010.sql │ │ ├── directGraph.ttl │ │ ├── manifest.ttl │ │ ├── mappeda-morph.nq │ │ ├── mappeda.nq │ │ ├── mappedb-morph.nq │ │ ├── mappedb.nq │ │ ├── mappedc-morph.nq │ │ ├── mappedc.nq │ │ ├── r2rmla.ttl │ │ ├── r2rmlb.ttl │ │ └── r2rmlc.ttl │ ├── D011-M2MRelations │ │ ├── create.mysql.sql │ │ ├── create.sql │ │ ├── d011.sql │ │ ├── directGraph.ttl │ │ ├── manifest.ttl │ │ ├── mappeda-morph.nq │ │ ├── mappeda.nq │ │ ├── mappedb-morph.nq │ │ ├── mappedb.nq │ │ ├── r2rmla.ttl │ │ └── r2rmlb.ttl │ ├── D012-2tables2duplicates0nulls │ │ ├── create.mysql.sql │ │ ├── create.sql │ │ ├── d012.sql │ │ ├── directGraph.ttl │ │ ├── manifest.ttl │ │ ├── mappeda-morph.nq │ │ ├── mappeda.nq │ │ ├── mappedb-morph.nq │ │ ├── mappedb.nq │ │ ├── mappede-morph.nq │ │ ├── mappede.nq │ │ ├── r2rmla.ttl │ │ ├── r2rmlb.ttl │ │ ├── r2rmlc.ttl │ │ ├── r2rmld.ttl │ │ └── r2rmle.ttl │ ├── D013-1table1primarykey3columns2rows1nullvalue │ │ ├── create.mysql.sql │ │ ├── create.sql │ │ ├── d013.sql │ │ ├── directGraph.ttl │ │ ├── manifest.ttl │ │ ├── mappeda-morph.nq │ │ ├── mappeda.nq │ │ └── r2rmla.ttl │ ├── D014-3tables1primarykey1foreignkey │ │ ├── create.mysql.sql │ │ ├── create.sql │ │ ├── d014.sql │ │ ├── directGraph.ttl │ │ ├── manifest.ttl │ │ ├── mappeda-morph.nq │ │ ├── mappeda.nq │ │ ├── mappedb-morph.nq │ │ ├── mappedb.nq │ │ ├── mappedc-morph.nq │ │ ├── mappedc.nq │ │ ├── mappedd-morph.nq │ │ ├── mappedd.nq │ │ ├── r2rmla.mysql.ttl │ │ ├── r2rmla.ttl │ │ ├── r2rmlb.mysql.ttl │ │ ├── r2rmlb.ttl │ │ ├── r2rmlc.ttl │ │ └── r2rmld.ttl │ ├── D015-1table3columns1composityeprimarykey3rows2languages │ │ ├── create.mysql.sql │ │ ├── create.sql │ │ ├── d015.sql │ │ ├── directGraph.ttl │ │ ├── manifest.ttl │ │ ├── mappeda-morph.nq │ │ ├── mappeda.nq │ │ ├── mappedb-morph.nq │ │ ├── r2rmla.ttl │ │ └── r2rmlb.ttl │ ├── D016-1table1primarykey10columns3rowsSQLdatatypes │ │ ├── create.mysql.sql │ │ ├── create.sql │ │ ├── d016.sql │ │ ├── directGraph.ttl │ │ ├── manifest.ttl │ │ ├── mappeda-morph.nq │ │ ├── mappeda.nq │ │ ├── mappedb-morph.nq │ │ ├── mappedb.nq │ │ ├── mappedc-morph.nq │ │ ├── mappedc.nq │ │ ├── mappedd-morph.nq │ │ ├── mappedd.nq │ │ ├── mappede-morph.nq │ │ ├── mappede.nq │ │ ├── r2rmla.ttl │ │ ├── r2rmlb.ttl │ │ ├── r2rmlc.ttl │ │ ├── r2rmld.ttl │ │ └── r2rmle.ttl │ ├── D017-I18NnoSpecialChars │ │ ├── create.mysql.sql │ │ ├── create.sql │ │ ├── directGraph.ttl │ │ └── manifest.ttl │ ├── D018-1table1primarykey2columns3rows │ │ ├── create.mysql.sql │ │ ├── create.sql │ │ ├── d018.sql │ │ ├── directGraph.ttl │ │ ├── manifest.ttl │ │ ├── mappeda-morph.nq │ │ ├── mappeda.nq │ │ └── r2rmla.ttl │ ├── D019-1table1primarykey3columns3rows │ │ ├── create.mysql.sql │ │ ├── create.sql │ │ ├── d019.sql │ │ ├── manifest.ttl │ │ ├── mappeda-morph.nq │ │ ├── mappeda.nq │ │ ├── mappedb-morph.nq │ │ ├── r2rmla.ttl │ │ └── r2rmlb.ttl │ ├── D020-1table1column5rows │ │ ├── create.mysql.sql │ │ ├── d020.sql │ │ ├── manifest.ttl │ │ ├── mappeda-morph.nq │ │ ├── mappeda.nq │ │ ├── mappedb-morph.nq │ │ ├── r2rmla.ttl │ │ └── r2rmlb.ttl │ ├── D021-2tables2primarykeys1foreignkeyReferencesAllNulls │ │ ├── create.sql │ │ ├── directGraph.ttl │ │ └── manifest.ttl │ ├── D022-2tables1primarykey1foreignkeyReferencesNoPrimaryKey │ │ ├── create.sql │ │ ├── directGraph.ttl │ │ └── manifest.ttl │ ├── D023-2tables2primarykeys2foreignkeysReferencesToNon-primarykeys │ │ ├── create.sql │ │ ├── directGraph.ttl │ │ └── manifest.ttl │ ├── D024-2tables2primarykeys1foreignkeyToARowWithSomeNulls │ │ ├── create.sql │ │ ├── directGraph.ttl │ │ └── manifest.ttl │ ├── D025-3tables3primarykeys3foreignkeys │ │ ├── create.sql │ │ ├── directGraph.ttl │ │ └── manifest.ttl │ ├── DirectGraphTC0000.bat │ ├── DirectGraphTC0000.morph.properties │ ├── DirectGraphTC0000.sh │ ├── DirectGraphTC0001.bat │ ├── DirectGraphTC0001.morph.properties │ ├── DirectGraphTC0001.sh │ ├── DirectGraphTC0002.bat │ ├── DirectGraphTC0002.morph.properties │ ├── DirectGraphTC0002.sh │ ├── DirectGraphTC0003.bat │ ├── DirectGraphTC0003.morph.properties │ ├── DirectGraphTC0003.sh │ ├── DirectGraphTC0004.bat │ ├── DirectGraphTC0004.morph.properties │ ├── DirectGraphTC0004.sh │ ├── DirectGraphTC0005.bat │ ├── DirectGraphTC0005.morph.properties │ ├── DirectGraphTC0005.sh │ ├── DirectGraphTC0006.bat │ ├── DirectGraphTC0006.morph.properties │ ├── DirectGraphTC0006.sh │ ├── DirectGraphTC0007.bat │ ├── DirectGraphTC0007.morph.properties │ ├── DirectGraphTC0007.sh │ ├── DirectGraphTC0008.bat │ ├── DirectGraphTC0008.morph.properties │ ├── DirectGraphTC0008.sh │ ├── DirectGraphTC0009.bat │ ├── DirectGraphTC0009.morph.properties │ ├── DirectGraphTC0009.sh │ ├── DirectGraphTC0010.bat │ ├── DirectGraphTC0010.morph.properties │ ├── DirectGraphTC0010.sh │ ├── DirectGraphTC0011.bat │ ├── DirectGraphTC0011.morph.properties │ ├── DirectGraphTC0011.sh │ ├── DirectGraphTC0011b.morph.properties │ ├── DirectGraphTC0012.bat │ ├── DirectGraphTC0012.morph.properties │ ├── DirectGraphTC0012.sh │ ├── DirectGraphTC0013.bat │ ├── DirectGraphTC0013.morph.properties │ ├── DirectGraphTC0013.sh │ ├── DirectGraphTC0014.bat │ ├── DirectGraphTC0014.morph.properties │ ├── DirectGraphTC0014.sh │ ├── DirectGraphTC0015.bat │ ├── DirectGraphTC0015.morph.properties │ ├── DirectGraphTC0015.sh │ ├── DirectGraphTC0016.bat │ ├── DirectGraphTC0016.morph.properties │ ├── DirectGraphTC0016.sh │ ├── DirectGraphTC0017.morph.properties │ ├── DirectGraphTC0017.sh │ ├── DirectGraphTC0018.bat │ ├── DirectGraphTC0018.morph.properties │ ├── DirectGraphTC0018.sh │ ├── DirectGraphTC0019.bat │ ├── DirectGraphTC0019.morph.properties │ ├── DirectGraphTC0019.sh │ ├── DirectGraphTC0020.bat │ ├── DirectGraphTC0020.morph.properties │ ├── DirectGraphTC0020.sh │ ├── R2RMLTC0001a-oracle.morph.properties │ ├── R2RMLTC0001a.morph.properties │ ├── R2RMLTC0001b-oracle.morph.properties │ ├── R2RMLTC0001b.morph.properties │ ├── R2RMLTC0002a-oracle.morph.properties │ ├── R2RMLTC0002a.morph.properties │ ├── R2RMLTC0002b-oracle.morph.properties │ ├── R2RMLTC0002b.morph.properties │ ├── R2RMLTC0002c-oracle.morph.properties │ ├── R2RMLTC0002c.morph.properties │ ├── R2RMLTC0002d-oracle.morph.properties │ ├── R2RMLTC0002d.morph.properties │ ├── R2RMLTC0002e-oracle.morph.properties │ ├── R2RMLTC0002e.morph.properties │ ├── R2RMLTC0002f-oracle.morph.properties │ ├── R2RMLTC0002f.morph.properties │ ├── R2RMLTC0002g-oracle.morph.properties │ ├── R2RMLTC0002g.morph.properties │ ├── R2RMLTC0002h-oracle.morph.properties │ ├── R2RMLTC0002h.morph.properties │ ├── R2RMLTC0002i-oracle.morph.properties │ ├── R2RMLTC0002i.morph.properties │ ├── R2RMLTC0002j-oracle.morph.properties │ ├── R2RMLTC0002j.morph.properties │ ├── R2RMLTC0003a-oracle.morph.properties │ ├── R2RMLTC0003a.morph.properties │ ├── R2RMLTC0003b-oracle.morph.properties │ ├── R2RMLTC0003b.morph.properties │ ├── R2RMLTC0003c-oracle.morph.properties │ ├── R2RMLTC0003c.morph.properties │ ├── R2RMLTC0004a-oracle.morph.properties │ ├── R2RMLTC0004a.morph.properties │ ├── R2RMLTC0004b-oracle.morph.properties │ ├── R2RMLTC0004b.morph.properties │ ├── R2RMLTC0005a-oracle.morph.properties │ ├── R2RMLTC0005a.morph.properties │ ├── R2RMLTC0005b-oracle.morph.properties │ ├── R2RMLTC0005b.morph.properties │ ├── R2RMLTC0006a-oracle.morph.properties │ ├── R2RMLTC0006a.morph.properties │ ├── R2RMLTC0007a-oracle.morph.properties │ ├── R2RMLTC0007a.morph.properties │ ├── R2RMLTC0007b-oracle.morph.properties │ ├── R2RMLTC0007b.morph.properties │ ├── R2RMLTC0007c-oracle.morph.properties │ ├── R2RMLTC0007c.morph.properties │ ├── R2RMLTC0007d-oracle.morph.properties │ ├── R2RMLTC0007d.morph.properties │ ├── R2RMLTC0007e-oracle.morph.properties │ ├── R2RMLTC0007e.morph.properties │ ├── R2RMLTC0007f-oracle.morph.properties │ ├── R2RMLTC0007f.morph.properties │ ├── R2RMLTC0007g-oracle.morph.properties │ ├── R2RMLTC0007g.morph.properties │ ├── R2RMLTC0007h-oracle.morph.properties │ ├── R2RMLTC0007h.morph.properties │ ├── R2RMLTC0008a-oracle.morph.properties │ ├── R2RMLTC0008a.morph.properties │ ├── R2RMLTC0008b-oracle.morph.properties │ ├── R2RMLTC0008b.morph.properties │ ├── R2RMLTC0008c-oracle.morph.properties │ ├── R2RMLTC0008c.morph.properties │ ├── R2RMLTC0009a-oracle.morph.properties │ ├── R2RMLTC0009a.morph.properties │ ├── R2RMLTC0009b-oracle.morph.properties │ ├── R2RMLTC0009b.morph.properties │ ├── R2RMLTC0009c-oracle.morph.properties │ ├── R2RMLTC0009c.morph.properties │ ├── R2RMLTC0009d-oracle.morph.properties │ ├── R2RMLTC0009d.morph.properties │ ├── R2RMLTC0010a-oracle.morph.properties │ ├── R2RMLTC0010a.morph.properties │ ├── R2RMLTC0010b-oracle.morph.properties │ ├── R2RMLTC0010b.morph.properties │ ├── R2RMLTC0010c-oracle.morph.properties │ ├── R2RMLTC0010c.morph.properties │ ├── R2RMLTC0011a-oracle.morph.properties │ ├── R2RMLTC0011a.morph.properties │ ├── R2RMLTC0011b-oracle.morph.properties │ ├── R2RMLTC0011b.morph.properties │ ├── R2RMLTC0012a-oracle.morph.properties │ ├── R2RMLTC0012a.morph.properties │ ├── R2RMLTC0012b-oracle.morph.properties │ ├── R2RMLTC0012b.morph.properties │ ├── R2RMLTC0012c-oracle.morph.properties │ ├── R2RMLTC0012c.morph.properties │ ├── R2RMLTC0012d-oracle.morph.properties │ ├── R2RMLTC0012d.morph.properties │ ├── R2RMLTC0012e-oracle.morph.properties │ ├── R2RMLTC0012e.morph.properties │ ├── R2RMLTC0013a-oracle.morph.properties │ ├── R2RMLTC0013a.morph.properties │ ├── R2RMLTC0014a-oracle.morph.properties │ ├── R2RMLTC0014a.morph.properties │ ├── R2RMLTC0014b-oracle.morph.properties │ ├── R2RMLTC0014b.morph.properties │ ├── R2RMLTC0014c-oracle.morph.properties │ ├── R2RMLTC0014c.morph.properties │ ├── R2RMLTC0014d-oracle.morph.properties │ ├── R2RMLTC0014d.morph.properties │ ├── R2RMLTC0015a-oracle.morph.properties │ ├── R2RMLTC0015a.morph.properties │ ├── R2RMLTC0015b-oracle.morph.properties │ ├── R2RMLTC0015b.morph.properties │ ├── R2RMLTC0016a.morph.properties │ ├── R2RMLTC0016b.morph.properties │ ├── R2RMLTC0016c.morph.properties │ ├── R2RMLTC0016d.morph.properties │ ├── R2RMLTC0016e.morph.properties │ ├── R2RMLTC0018a-oracle.morph.properties │ ├── R2RMLTC0018a.morph.properties │ ├── R2RMLTC0019a-oracle.morph.properties │ ├── R2RMLTC0019a.morph.properties │ ├── R2RMLTC0019b-oracle.morph.properties │ ├── R2RMLTC0019b.morph.properties │ ├── R2RMLTC0020a-oracle.morph.properties │ ├── R2RMLTC0020a.morph.properties │ ├── R2RMLTC0020b-oracle.morph.properties │ ├── R2RMLTC0020b.morph.properties │ ├── d011b.sql │ └── d017-mappings.ttl └── testcases-postgresql │ ├── D000-1table1column0rows │ ├── create.mysql.sql │ ├── create.sql │ ├── d000.sql │ ├── directGraph.ttl │ ├── manifest.ttl │ ├── mapped-morph.nq │ ├── mapped.nq │ └── r2rml.ttl │ ├── D001-1table1column1row │ ├── create.mysql.sql │ ├── create.sql │ ├── d001.sql │ ├── directGraph.ttl │ ├── manifest.ttl │ ├── mappeda-morph.nq │ ├── mappeda.nq │ ├── mappedb-morph.nq │ ├── mappedb.nq │ ├── r2rmla.ttl │ └── r2rmlb.ttl │ ├── D002-1table2columns1row │ ├── create.mysql.sql │ ├── create.sql │ ├── d002.sql │ ├── directGraph.ttl │ ├── manifest.ttl │ ├── mappeda-morph.nq │ ├── mappeda.nq │ ├── mappedb-morph.nq │ ├── mappedb.nq │ ├── mappedc-morph.nq │ ├── mappedd-morph.nq │ ├── mappedd.nq │ ├── mappede-morph.nq │ ├── mappedf-morph.nq │ ├── mappedg-morph.nq │ ├── mappedh-morph.nq │ ├── mappedi-morph.nq │ ├── mappedi.nq │ ├── mappedj-morph.nq │ ├── mappedj.nq │ ├── r2rmla.ttl │ ├── r2rmlb.ttl │ ├── r2rmlc.ttl │ ├── r2rmld-mysql.ttl │ ├── r2rmld.ttl │ ├── r2rmle.ttl │ ├── r2rmlf.ttl │ ├── r2rmlg.ttl │ ├── r2rmlh.ttl │ ├── r2rmli.ttl │ └── r2rmlj.ttl │ ├── D003-1table3columns1row │ ├── create.mysql.sql │ ├── create.sql │ ├── d003.sql │ ├── directGraph.ttl │ ├── manifest.ttl │ ├── mappeda-morph.nq │ ├── mappedb-morph.nq │ ├── mappedb.nq │ ├── mappedc-morph.nq │ ├── mappedc.nq │ ├── r2rmla.ttl │ ├── r2rmlb.ttl │ ├── r2rmlb2.ttl │ └── r2rmlc.ttl │ ├── D004-1table2columns1row │ ├── create.mysql.sql │ ├── create.sql │ ├── d004.sql │ ├── directGraph.ttl │ ├── manifest.ttl │ ├── mappeda-morph.nq │ ├── mappeda.nq │ ├── r2rmla.ttl │ └── r2rmlb.ttl │ ├── D005-1table3columns3rows2duplicates │ ├── create.mysql.sql │ ├── create.sql │ ├── d005.sql │ ├── directGraph.ttl │ ├── manifest.ttl │ ├── mappeda-morph.nq │ ├── mappeda.nq │ ├── mappedb-morph.nq │ ├── mappedb.nq │ ├── r2rmla.ttl │ └── r2rmlb.ttl │ ├── D006-1table1primarykey1column1row │ ├── create.mysql.sql │ ├── create.sql │ ├── d006.sql │ ├── directGraph.ttl │ ├── manifest.ttl │ ├── mappeda-morph.nq │ ├── mappeda.nq │ └── r2rmla.ttl │ ├── D007-1table1primarykey2columns1row │ ├── create.mysql.sql │ ├── create.sql │ ├── d007.sql │ ├── directGraph.ttl │ ├── manifest.ttl │ ├── mappeda-morph.nq │ ├── mappeda.nq │ ├── mappedb-morph.nq │ ├── mappedb.nq │ ├── mappedc-morph.nq │ ├── mappedc.nq │ ├── mappedd-morph.nq │ ├── mappedd.nq │ ├── mappede-morph.nq │ ├── mappede.nq │ ├── mappedf-morph.nq │ ├── mappedf.nq │ ├── mappedg-morph.nq │ ├── mappedg.nq │ ├── mappedh.nq │ ├── r2rmla.ttl │ ├── r2rmlb.ttl │ ├── r2rmlc.ttl │ ├── r2rmld.ttl │ ├── r2rmle.ttl │ ├── r2rmlf.ttl │ ├── r2rmlg.ttl │ ├── r2rmlh.ttl │ └── r2rmli.ttl │ ├── D008-1table1compositeprimarykey3columns1row │ ├── create.mysql.sql │ ├── create.sql │ ├── d008.sql │ ├── directGraph.ttl │ ├── manifest.ttl │ ├── mappeda-morph.nq │ ├── mappeda.nq │ ├── mappedb-morph.nq │ ├── mappedb.nq │ ├── mappedc-morph.nq │ ├── mappedc.nq │ ├── r2rmla.ttl │ ├── r2rmlb.ttl │ └── r2rmlc.ttl │ ├── D009-2tables1primarykey1foreignkey │ ├── create.mysql.sql │ ├── create.sql │ ├── d009.sql │ ├── directGraph.ttl │ ├── manifest.ttl │ ├── mappeda-morph.nq │ ├── mappeda.nq │ ├── mappedb-morph.nq │ ├── mappedb.nq │ ├── mappedc-morph.nq │ ├── mappedc.nq │ ├── mappedd-morph.nq │ ├── mappedd.nq │ ├── r2rmla.ttl │ ├── r2rmlb.ttl │ ├── r2rmlc.ttl │ └── r2rmld.ttl │ ├── D010-1table1primarykey3colums3rows │ ├── create.mysql.sql │ ├── create.sql │ ├── d010.sql │ ├── directGraph.ttl │ ├── manifest.ttl │ ├── mappeda-morph.nq │ ├── mappeda.nq │ ├── mappedb-morph.nq │ ├── mappedb.nq │ ├── mappedc-morph.nq │ ├── mappedc.nq │ ├── r2rmla.ttl │ ├── r2rmlb.ttl │ └── r2rmlc.ttl │ ├── D011-M2MRelations │ ├── create.mysql.sql │ ├── create.sql │ ├── d011.sql │ ├── directGraph.ttl │ ├── manifest.ttl │ ├── mappeda-morph.nq │ ├── mappeda.nq │ ├── mappedb-morph.nq │ ├── mappedb.nq │ ├── r2rmla.ttl │ └── r2rmlb.ttl │ ├── D012-2tables2duplicates0nulls │ ├── create.mysql.sql │ ├── create.sql │ ├── d012.sql │ ├── directGraph.ttl │ ├── manifest.ttl │ ├── mappeda-morph.nq │ ├── mappeda.nq │ ├── mappedb-morph.nq │ ├── mappedb.nq │ ├── mappede-morph.nq │ ├── mappede.nq │ ├── r2rmla.ttl │ ├── r2rmlb.ttl │ ├── r2rmlc.ttl │ ├── r2rmld.ttl │ └── r2rmle.ttl │ ├── D013-1table1primarykey3columns2rows1nullvalue │ ├── create.mysql.sql │ ├── create.sql │ ├── d013.sql │ ├── directGraph.ttl │ ├── manifest.ttl │ ├── mappeda-morph.nq │ ├── mappeda.nq │ └── r2rmla.ttl │ ├── D014-3tables1primarykey1foreignkey │ ├── create.mysql.sql │ ├── create.sql │ ├── d014.sql │ ├── directGraph.ttl │ ├── manifest.ttl │ ├── mappeda-morph.nq │ ├── mappeda.nq │ ├── mappedb-morph.nq │ ├── mappedb.nq │ ├── mappedc-morph.nq │ ├── mappedc.nq │ ├── mappedd-morph.nq │ ├── mappedd.nq │ ├── r2rmla.mysql.ttl │ ├── r2rmla.ttl │ ├── r2rmlb.mysql.ttl │ ├── r2rmlb.ttl │ ├── r2rmlc.ttl │ └── r2rmld.ttl │ ├── D015-1table3columns1composityeprimarykey3rows2languages │ ├── create.mysql.sql │ ├── create.sql │ ├── d015.sql │ ├── directGraph.ttl │ ├── manifest.ttl │ ├── mappeda-morph.nq │ ├── mappeda.nq │ ├── mappedb-morph.nq │ ├── r2rmla.ttl │ └── r2rmlb.ttl │ ├── D016-1table1primarykey10columns3rowsSQLdatatypes │ ├── create.mysql.sql │ ├── create.sql │ ├── d016.sql │ ├── directGraph.ttl │ ├── manifest.ttl │ ├── mappeda-morph.nq │ ├── mappeda.nq │ ├── mappedb-morph.nq │ ├── mappedb.nq │ ├── mappedc-morph.nq │ ├── mappedc.nq │ ├── mappedd-morph.nq │ ├── mappedd.nq │ ├── mappede-morph.nq │ ├── mappede.nq │ ├── r2rmla.ttl │ ├── r2rmlb.ttl │ ├── r2rmlc.ttl │ ├── r2rmld.ttl │ └── r2rmle.ttl │ ├── D017-I18NnoSpecialChars │ ├── create.mysql.sql │ ├── create.sql │ ├── directGraph.ttl │ └── manifest.ttl │ ├── D018-1table1primarykey2columns3rows │ ├── create.mysql.sql │ ├── create.sql │ ├── d018.sql │ ├── directGraph.ttl │ ├── manifest.ttl │ ├── mappeda-morph.nq │ ├── mappeda.nq │ └── r2rmla.ttl │ ├── D019-1table1primarykey3columns3rows │ ├── create.mysql.sql │ ├── create.sql │ ├── d019.sql │ ├── manifest.ttl │ ├── mappeda-morph.nq │ ├── mappeda.nq │ ├── mappedb-morph.nq │ ├── r2rmla.ttl │ └── r2rmlb.ttl │ ├── D020-1table1column5rows │ ├── create.mysql.sql │ ├── d020.sql │ ├── manifest.ttl │ ├── mappeda-morph.nq │ ├── mappeda.nq │ ├── mappedb-morph.nq │ ├── r2rmla.ttl │ └── r2rmlb.ttl │ ├── D021-2tables2primarykeys1foreignkeyReferencesAllNulls │ ├── create.sql │ ├── directGraph.ttl │ └── manifest.ttl │ ├── D022-2tables1primarykey1foreignkeyReferencesNoPrimaryKey │ ├── create.sql │ ├── directGraph.ttl │ └── manifest.ttl │ ├── D023-2tables2primarykeys2foreignkeysReferencesToNon-primarykeys │ ├── create.sql │ ├── directGraph.ttl │ └── manifest.ttl │ ├── D024-2tables2primarykeys1foreignkeyToARowWithSomeNulls │ ├── create.sql │ ├── directGraph.ttl │ └── manifest.ttl │ ├── D025-3tables3primarykeys3foreignkeys │ ├── create.sql │ ├── directGraph.ttl │ └── manifest.ttl │ ├── DirectGraphTC0000.bat │ ├── DirectGraphTC0000.morph.properties │ ├── DirectGraphTC0000.sh │ ├── DirectGraphTC0001.bat │ ├── DirectGraphTC0001.morph.properties │ ├── DirectGraphTC0001.sh │ ├── DirectGraphTC0002.bat │ ├── DirectGraphTC0002.morph.properties │ ├── DirectGraphTC0002.sh │ ├── DirectGraphTC0003.bat │ ├── DirectGraphTC0003.morph.properties │ ├── DirectGraphTC0003.sh │ ├── DirectGraphTC0004.bat │ ├── DirectGraphTC0004.morph.properties │ ├── DirectGraphTC0004.sh │ ├── DirectGraphTC0005.bat │ ├── DirectGraphTC0005.morph.properties │ ├── DirectGraphTC0005.sh │ ├── DirectGraphTC0006.bat │ ├── DirectGraphTC0006.morph.properties │ ├── DirectGraphTC0006.sh │ ├── DirectGraphTC0007.bat │ ├── DirectGraphTC0007.morph.properties │ ├── DirectGraphTC0007.sh │ ├── DirectGraphTC0008.bat │ ├── DirectGraphTC0008.morph.properties │ ├── DirectGraphTC0008.sh │ ├── DirectGraphTC0009.bat │ ├── DirectGraphTC0009.morph.properties │ ├── DirectGraphTC0009.sh │ ├── DirectGraphTC0010.bat │ ├── DirectGraphTC0010.morph.properties │ ├── DirectGraphTC0010.sh │ ├── DirectGraphTC0011.bat │ ├── DirectGraphTC0011.morph.properties │ ├── DirectGraphTC0011.sh │ ├── DirectGraphTC0011b.morph.properties │ ├── DirectGraphTC0012.bat │ ├── DirectGraphTC0012.morph.properties │ ├── DirectGraphTC0012.sh │ ├── DirectGraphTC0013.bat │ ├── DirectGraphTC0013.morph.properties │ ├── DirectGraphTC0013.sh │ ├── DirectGraphTC0014.bat │ ├── DirectGraphTC0014.morph.properties │ ├── DirectGraphTC0014.sh │ ├── DirectGraphTC0015.bat │ ├── DirectGraphTC0015.morph.properties │ ├── DirectGraphTC0015.sh │ ├── DirectGraphTC0016.bat │ ├── DirectGraphTC0016.morph.properties │ ├── DirectGraphTC0016.sh │ ├── DirectGraphTC0017.morph.properties │ ├── DirectGraphTC0017.sh │ ├── DirectGraphTC0018.bat │ ├── DirectGraphTC0018.morph.properties │ ├── DirectGraphTC0018.sh │ ├── DirectGraphTC0019.bat │ ├── DirectGraphTC0019.morph.properties │ ├── DirectGraphTC0019.sh │ ├── DirectGraphTC0020.bat │ ├── DirectGraphTC0020.morph.properties │ ├── DirectGraphTC0020.sh │ ├── R2RMLTC0000.morph.properties │ ├── R2RMLTC0001a.morph.properties │ ├── R2RMLTC0001b.morph.properties │ ├── R2RMLTC0002a.morph.properties │ ├── R2RMLTC0002b.morph.properties │ ├── R2RMLTC0002c.morph.properties │ ├── R2RMLTC0002d.morph.properties │ ├── R2RMLTC0002e.morph.properties │ ├── R2RMLTC0002f.morph.properties │ ├── R2RMLTC0002g.morph.properties │ ├── R2RMLTC0002h.morph.properties │ ├── R2RMLTC0002i.morph.properties │ ├── R2RMLTC0002j.morph.properties │ ├── R2RMLTC0003a.morph.properties │ ├── R2RMLTC0003b.morph.properties │ ├── R2RMLTC0003c.morph.properties │ ├── R2RMLTC0004a.morph.properties │ ├── R2RMLTC0004b.morph.properties │ ├── R2RMLTC0005a.morph.properties │ ├── R2RMLTC0005b.morph.properties │ ├── R2RMLTC0006a.morph.properties │ ├── R2RMLTC0007a.morph.properties │ ├── R2RMLTC0007b.morph.properties │ ├── R2RMLTC0007c.morph.properties │ ├── R2RMLTC0007d.morph.properties │ ├── R2RMLTC0007e.morph.properties │ ├── R2RMLTC0007f.morph.properties │ ├── R2RMLTC0007g.morph.properties │ ├── R2RMLTC0007h.morph.properties │ ├── R2RMLTC0007i.morph.properties │ ├── R2RMLTC0008a.morph.properties │ ├── R2RMLTC0008b.morph.properties │ ├── R2RMLTC0008c.morph.properties │ ├── R2RMLTC0009a.morph.properties │ ├── R2RMLTC0009b.morph.properties │ ├── R2RMLTC0009c.morph.properties │ ├── R2RMLTC0009d.morph.properties │ ├── R2RMLTC0010a.morph.properties │ ├── R2RMLTC0010b.morph.properties │ ├── R2RMLTC0010c.morph.properties │ ├── R2RMLTC0011a.morph.properties │ ├── R2RMLTC0011b.morph.properties │ ├── R2RMLTC0012a.morph.properties │ ├── R2RMLTC0012b.morph.properties │ ├── R2RMLTC0012c.morph.properties │ ├── R2RMLTC0012d.morph.properties │ ├── R2RMLTC0012e.morph.properties │ ├── R2RMLTC0013a.morph.properties │ ├── R2RMLTC0014a.morph.properties │ ├── R2RMLTC0014b.morph.properties │ ├── R2RMLTC0014c.morph.properties │ ├── R2RMLTC0014d.morph.properties │ ├── R2RMLTC0015a.morph.properties │ ├── R2RMLTC0015b.morph.properties │ ├── R2RMLTC0016a.morph.properties │ ├── R2RMLTC0016b.morph.properties │ ├── R2RMLTC0016c.morph.properties │ ├── R2RMLTC0016d.morph.properties │ ├── R2RMLTC0016e.morph.properties │ ├── R2RMLTC0018a.morph.properties │ ├── R2RMLTC0019a.morph.properties │ ├── R2RMLTC0019b.morph.properties │ ├── R2RMLTC0020a.morph.properties │ ├── R2RMLTC0020b.morph.properties │ ├── d011b.sql │ └── d017-mappings.ttl ├── morph-r2rml-rdb-querytranslator ├── pom.xml └── src │ ├── main │ └── scala │ │ └── es │ │ └── upm │ │ └── fi │ │ └── dia │ │ └── oeg │ │ └── morph │ │ └── rdb │ │ └── querytranslator │ │ ├── MorphRDBAlphaGenerator.scala │ │ ├── MorphRDBBetaGenerator.scala │ │ ├── MorphRDBCondSQLGenerator.scala │ │ ├── MorphRDBPRSQLGenerator.scala │ │ ├── MorphRDBQueryTranslator.scala │ │ └── MorphRDBQueryTranslatorFactory.scala │ └── test │ └── scala │ └── dummy.txt ├── morph-r2rml-rdb ├── lib │ └── ojdbc6.jar ├── pom.xml └── src │ ├── main │ └── scala │ │ └── es │ │ └── upm │ │ └── fi │ │ └── dia │ │ └── oeg │ │ └── morph │ │ └── r2rml │ │ └── rdb │ │ └── engine │ │ ├── MorphCSVProperties.scala │ │ ├── MorphCSVRunner.scala │ │ ├── MorphCSVRunnerFactory.scala │ │ ├── MorphRDBDataSourceReader.scala │ │ ├── MorphRDBDataTranslator.scala │ │ ├── MorphRDBNodeGenerator.scala │ │ ├── MorphRDBProperties.scala │ │ ├── MorphRDBRunner.scala │ │ ├── MorphRDBRunnerFactory.scala │ │ ├── MorphRDBUnfolder.scala │ │ └── MorphRDBUtility.scala │ └── test │ └── dummy.txt ├── morph-r2rml ├── pom.xml └── src │ ├── main │ └── scala │ │ └── es │ │ └── upm │ │ └── fi │ │ └── dia │ │ └── oeg │ │ └── morph │ │ └── r2rml │ │ ├── MorphR2RMLElement.scala │ │ ├── MorphR2RMLElementVisitor.scala │ │ ├── engine │ │ ├── R2RMLParser.scala │ │ └── R2RMLTermMapFactory.scala │ │ └── model │ │ ├── IColumnTermMap.scala │ │ ├── IConstantTermMap.scala │ │ ├── ITemplateTermMap.scala │ │ ├── R2RMLGraphMap.scala │ │ ├── R2RMLJoinCondition.scala │ │ ├── R2RMLLogicalTable.scala │ │ ├── R2RMLMappingDocument.scala │ │ ├── R2RMLObjectMap.scala │ │ ├── R2RMLPredicateMap.scala │ │ ├── R2RMLPredicateObjectMap.scala │ │ ├── R2RMLRefObjectMap.scala │ │ ├── R2RMLSQLQuery.scala │ │ ├── R2RMLSubjectMap.scala │ │ ├── R2RMLTable.scala │ │ ├── R2RMLTermMap.scala │ │ └── R2RMLTriplesMap.scala │ └── test │ └── scala │ └── es │ └── upm │ └── fi │ └── dia │ └── oeg │ └── morph │ └── r2rml │ └── model │ └── TestR2RMLMappingDocument.scala ├── morph-rdb-dist ├── pom.xml └── src │ └── main │ └── assembly │ └── all-jar.xml ├── morph-rdb.jar ├── pom.xml └── run-docker.sh /.gitattributes: -------------------------------------------------------------------------------- 1 | *.rb linguist-language=Scala -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/LICENCE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /morph-base-querytranslator/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-base-querytranslator/pom.xml -------------------------------------------------------------------------------- /morph-base/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /morph-base/lib/Zql.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-base/lib/Zql.jar -------------------------------------------------------------------------------- /morph-base/lib/ojdbc6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-base/lib/ojdbc6.jar -------------------------------------------------------------------------------- /morph-base/lib/r2rml-mappings-generator-v1.1.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-base/lib/r2rml-mappings-generator-v1.1.3.jar -------------------------------------------------------------------------------- /morph-base/lib/r2rml-mappings-generator-v1.1.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-base/lib/r2rml-mappings-generator-v1.1.4.jar -------------------------------------------------------------------------------- /morph-base/lib/r2rml-mappings-generator-v1.1.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-base/lib/r2rml-mappings-generator-v1.1.5.jar -------------------------------------------------------------------------------- /morph-base/lib/r2rml-mappings-generator-v1.1.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-base/lib/r2rml-mappings-generator-v1.1.6.jar -------------------------------------------------------------------------------- /morph-base/lib/rqr4r2o.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-base/lib/rqr4r2o.jar -------------------------------------------------------------------------------- /morph-base/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-base/pom.xml -------------------------------------------------------------------------------- /morph-base/src/main/scala/es/upm/fi/dia/oeg/morph/base/sql/SQLJoin.scala: -------------------------------------------------------------------------------- 1 | package es.upm.fi.dia.oeg.morph.base.sql 2 | 3 | class SQLJoin { 4 | 5 | } -------------------------------------------------------------------------------- /morph-examples/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | /log/ -------------------------------------------------------------------------------- /morph-examples/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/architecture.png -------------------------------------------------------------------------------- /morph-examples/dependency/apache-jena-libs-3.1.0.pom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/dependency/apache-jena-libs-3.1.0.pom -------------------------------------------------------------------------------- /morph-examples/dependency/collection-0.7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/dependency/collection-0.7.jar -------------------------------------------------------------------------------- /morph-examples/dependency/commons-cli-1.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/dependency/commons-cli-1.4.jar -------------------------------------------------------------------------------- /morph-examples/dependency/commons-codec-1.9.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/dependency/commons-codec-1.9.jar -------------------------------------------------------------------------------- /morph-examples/dependency/commons-csv-1.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/dependency/commons-csv-1.5.jar -------------------------------------------------------------------------------- /morph-examples/dependency/commons-io-2.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/dependency/commons-io-2.5.jar -------------------------------------------------------------------------------- /morph-examples/dependency/commons-lang3-3.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/dependency/commons-lang3-3.4.jar -------------------------------------------------------------------------------- /morph-examples/dependency/h2-1.4.191.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/dependency/h2-1.4.191.jar -------------------------------------------------------------------------------- /morph-examples/dependency/httpclient-4.5.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/dependency/httpclient-4.5.2.jar -------------------------------------------------------------------------------- /morph-examples/dependency/httpclient-cache-4.5.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/dependency/httpclient-cache-4.5.3.jar -------------------------------------------------------------------------------- /morph-examples/dependency/httpcore-4.4.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/dependency/httpcore-4.4.4.jar -------------------------------------------------------------------------------- /morph-examples/dependency/httpcore-nio-4.4.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/dependency/httpcore-nio-4.4.4.jar -------------------------------------------------------------------------------- /morph-examples/dependency/jackson-annotations-2.9.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/dependency/jackson-annotations-2.9.0.jar -------------------------------------------------------------------------------- /morph-examples/dependency/jackson-core-2.9.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/dependency/jackson-core-2.9.0.jar -------------------------------------------------------------------------------- /morph-examples/dependency/jackson-databind-2.9.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/dependency/jackson-databind-2.9.0.jar -------------------------------------------------------------------------------- /morph-examples/dependency/jcl-over-slf4j-1.7.25.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/dependency/jcl-over-slf4j-1.7.25.jar -------------------------------------------------------------------------------- /morph-examples/dependency/jena-arq-3.7.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/dependency/jena-arq-3.7.0.jar -------------------------------------------------------------------------------- /morph-examples/dependency/jena-base-3.7.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/dependency/jena-base-3.7.0.jar -------------------------------------------------------------------------------- /morph-examples/dependency/jena-core-3.7.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/dependency/jena-core-3.7.0.jar -------------------------------------------------------------------------------- /morph-examples/dependency/jena-dboe-base-3.7.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/dependency/jena-dboe-base-3.7.0.jar -------------------------------------------------------------------------------- /morph-examples/dependency/jena-dboe-index-3.7.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/dependency/jena-dboe-index-3.7.0.jar -------------------------------------------------------------------------------- /morph-examples/dependency/jena-dboe-trans-data-3.7.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/dependency/jena-dboe-trans-data-3.7.0.jar -------------------------------------------------------------------------------- /morph-examples/dependency/jena-dboe-transaction-3.7.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/dependency/jena-dboe-transaction-3.7.0.jar -------------------------------------------------------------------------------- /morph-examples/dependency/jena-iri-3.7.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/dependency/jena-iri-3.7.0.jar -------------------------------------------------------------------------------- /morph-examples/dependency/jena-rdfconnection-3.7.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/dependency/jena-rdfconnection-3.7.0.jar -------------------------------------------------------------------------------- /morph-examples/dependency/jena-shaded-guava-3.7.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/dependency/jena-shaded-guava-3.7.0.jar -------------------------------------------------------------------------------- /morph-examples/dependency/jena-tdb-3.7.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/dependency/jena-tdb-3.7.0.jar -------------------------------------------------------------------------------- /morph-examples/dependency/jena-tdb2-3.7.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/dependency/jena-tdb2-3.7.0.jar -------------------------------------------------------------------------------- /morph-examples/dependency/jsonld-java-0.11.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/dependency/jsonld-java-0.11.1.jar -------------------------------------------------------------------------------- /morph-examples/dependency/libthrift-0.10.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/dependency/libthrift-0.10.0.jar -------------------------------------------------------------------------------- /morph-examples/dependency/log4j-api-2.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/dependency/log4j-api-2.8.jar -------------------------------------------------------------------------------- /morph-examples/dependency/log4j-core-2.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/dependency/log4j-core-2.8.jar -------------------------------------------------------------------------------- /morph-examples/dependency/mirror-1.2.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/dependency/mirror-1.2.0.jar -------------------------------------------------------------------------------- /morph-examples/dependency/mysql-connector-java-8.0.11.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/dependency/mysql-connector-java-8.0.11.jar -------------------------------------------------------------------------------- /morph-examples/dependency/ojdbc-14.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/dependency/ojdbc-14.jar -------------------------------------------------------------------------------- /morph-examples/dependency/postgresql-9.1-901-1.jdbc4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/dependency/postgresql-9.1-901-1.jdbc4.jar -------------------------------------------------------------------------------- /morph-examples/dependency/scala-library-2.11.12.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/dependency/scala-library-2.11.12.jar -------------------------------------------------------------------------------- /morph-examples/dependency/slf4j-api-1.7.20.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/dependency/slf4j-api-1.7.20.jar -------------------------------------------------------------------------------- /morph-examples/dependency/slf4j-simple-1.7.25.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/dependency/slf4j-simple-1.7.25.jar -------------------------------------------------------------------------------- /morph-examples/dependency/xercesImpl-2.11.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/dependency/xercesImpl-2.11.0.jar -------------------------------------------------------------------------------- /morph-examples/dependency/xml-apis-1.4.01.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/dependency/xml-apis-1.4.01.jar -------------------------------------------------------------------------------- /morph-examples/dependency/zql-0.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/dependency/zql-0.1.jar -------------------------------------------------------------------------------- /morph-examples/examples-bsbm-mysql/Query_01.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-bsbm-mysql/Query_01.rq -------------------------------------------------------------------------------- /morph-examples/examples-bsbm-mysql/Query_01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-bsbm-mysql/Query_01.txt -------------------------------------------------------------------------------- /morph-examples/examples-bsbm-mysql/batch-result.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-bsbm-mysql/batch-result.nt -------------------------------------------------------------------------------- /morph-examples/examples-bsbm-mysql/batch.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-bsbm-mysql/batch.morph.properties -------------------------------------------------------------------------------- /morph-examples/examples-bsbm-mysql/bsbm.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-bsbm-mysql/bsbm.ttl -------------------------------------------------------------------------------- /morph-examples/examples-bsbm-mysql/q1-result.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /morph-examples/examples-bsbm-mysql/q1.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-bsbm-mysql/q1.morph.properties -------------------------------------------------------------------------------- /morph-examples/examples-csv/SPORT.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-csv/SPORT.csv -------------------------------------------------------------------------------- /morph-examples/examples-csv/STUDENT.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-csv/STUDENT.csv -------------------------------------------------------------------------------- /morph-examples/examples-csv/bruxelles_bureaux_de_tourisme.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-csv/bruxelles_bureaux_de_tourisme.csv -------------------------------------------------------------------------------- /morph-examples/examples-csv/csv-example1-batch.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-csv/csv-example1-batch.bat -------------------------------------------------------------------------------- /morph-examples/examples-csv/csv-example1-batch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-csv/csv-example1-batch.sh -------------------------------------------------------------------------------- /morph-examples/examples-csv/csv-example1-query01.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-csv/csv-example1-query01.bat -------------------------------------------------------------------------------- /morph-examples/examples-csv/csv-example1-query01.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-csv/csv-example1-query01.sh -------------------------------------------------------------------------------- /morph-examples/examples-csv/csv-example1-query02.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-csv/csv-example1-query02.bat -------------------------------------------------------------------------------- /morph-examples/examples-csv/csv-example1-query02.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-csv/csv-example1-query02.sh -------------------------------------------------------------------------------- /morph-examples/examples-csv/csv-example1-query03.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-csv/csv-example1-query03.bat -------------------------------------------------------------------------------- /morph-examples/examples-csv/csv-example1-query03.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-csv/csv-example1-query03.sh -------------------------------------------------------------------------------- /morph-examples/examples-csv/csv-example1-query04.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-csv/csv-example1-query04.bat -------------------------------------------------------------------------------- /morph-examples/examples-csv/csv-example1-query04.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-csv/csv-example1-query04.sh -------------------------------------------------------------------------------- /morph-examples/examples-csv/csv-example1-query05.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-csv/csv-example1-query05.bat -------------------------------------------------------------------------------- /morph-examples/examples-csv/csv-example1-query05.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-csv/csv-example1-query05.sh -------------------------------------------------------------------------------- /morph-examples/examples-csv/csv-example1-query06.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-csv/csv-example1-query06.bat -------------------------------------------------------------------------------- /morph-examples/examples-csv/csv-example1-query06.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-csv/csv-example1-query06.sh -------------------------------------------------------------------------------- /morph-examples/examples-csv/edificio-historico-batch-csv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-csv/edificio-historico-batch-csv.sh -------------------------------------------------------------------------------- /morph-examples/examples-csv/edificio-historico-nkau-q1.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /morph-examples/examples-csv/edificio-historico-q1.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-csv/edificio-historico-q1.rq -------------------------------------------------------------------------------- /morph-examples/examples-csv/edificio-historico.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-csv/edificio-historico.csv -------------------------------------------------------------------------------- /morph-examples/examples-csv/edificio-historico.r2rml.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-csv/edificio-historico.r2rml.ttl -------------------------------------------------------------------------------- /morph-examples/examples-csv/example1-batch-csv.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-csv/example1-batch-csv.morph.properties -------------------------------------------------------------------------------- /morph-examples/examples-csv/example1-mapping-csv.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-csv/example1-mapping-csv.ttl -------------------------------------------------------------------------------- /morph-examples/examples-csv/example1-query01-csv.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-csv/example1-query01-csv.morph.properties -------------------------------------------------------------------------------- /morph-examples/examples-csv/example1-query01.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-csv/example1-query01.rq -------------------------------------------------------------------------------- /morph-examples/examples-csv/example1-query02-csv.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-csv/example1-query02-csv.morph.properties -------------------------------------------------------------------------------- /morph-examples/examples-csv/example1-query02.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-csv/example1-query02.rq -------------------------------------------------------------------------------- /morph-examples/examples-csv/example1-query03-csv.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-csv/example1-query03-csv.morph.properties -------------------------------------------------------------------------------- /morph-examples/examples-csv/example1-query03.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-csv/example1-query03.rq -------------------------------------------------------------------------------- /morph-examples/examples-csv/example1-query04-csv.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-csv/example1-query04-csv.morph.properties -------------------------------------------------------------------------------- /morph-examples/examples-csv/example1-query04.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-csv/example1-query04.rq -------------------------------------------------------------------------------- /morph-examples/examples-csv/example1-query05-csv.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-csv/example1-query05-csv.morph.properties -------------------------------------------------------------------------------- /morph-examples/examples-csv/example1-query05-result-csv.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-csv/example1-query05-result-csv.xml -------------------------------------------------------------------------------- /morph-examples/examples-csv/example1-query05.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-csv/example1-query05.rq -------------------------------------------------------------------------------- /morph-examples/examples-csv/example1-query06-csv.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-csv/example1-query06-csv.morph.properties -------------------------------------------------------------------------------- /morph-examples/examples-csv/example1-query06-result-csv.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-csv/example1-query06-result-csv.xml -------------------------------------------------------------------------------- /morph-examples/examples-csv/example1-query06.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-csv/example1-query06.rq -------------------------------------------------------------------------------- /morph-examples/examples-csv/linkedfiestas-batch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-csv/linkedfiestas-batch.sh -------------------------------------------------------------------------------- /morph-examples/examples-csv/linkedfiestas-q1.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-csv/linkedfiestas-q1.morph.properties -------------------------------------------------------------------------------- /morph-examples/examples-csv/linkedfiestas-q1.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-csv/linkedfiestas-q1.rq -------------------------------------------------------------------------------- /morph-examples/examples-csv/linkedfiestas-q1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-csv/linkedfiestas-q1.sh -------------------------------------------------------------------------------- /morph-examples/examples-csv/linkedfiestas1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-csv/linkedfiestas1.csv -------------------------------------------------------------------------------- /morph-examples/examples-csv/linkedfiestas1.r2rml.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-csv/linkedfiestas1.r2rml.ttl -------------------------------------------------------------------------------- /morph-examples/examples-csv/linkedfiestas2.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-csv/linkedfiestas2.nt -------------------------------------------------------------------------------- /morph-examples/examples-csv/madrid-batch-csv.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-csv/madrid-batch-csv.morph.properties -------------------------------------------------------------------------------- /morph-examples/examples-csv/madrid1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-csv/madrid1.csv -------------------------------------------------------------------------------- /morph-examples/examples-csv/madrid1.r2rml.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-csv/madrid1.r2rml.ttl -------------------------------------------------------------------------------- /morph-examples/examples-csv/monumento-batch-csv.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-csv/monumento-batch-csv.morph.properties -------------------------------------------------------------------------------- /morph-examples/examples-csv/monumento-batch-csv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-csv/monumento-batch-csv.sh -------------------------------------------------------------------------------- /morph-examples/examples-csv/monumento.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-csv/monumento.csv -------------------------------------------------------------------------------- /morph-examples/examples-csv/monumento.r2rml.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-csv/monumento.r2rml.ttl -------------------------------------------------------------------------------- /morph-examples/examples-csv/openfoodfacts-example.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-csv/openfoodfacts-example.csv -------------------------------------------------------------------------------- /morph-examples/examples-csv/openfoodfactsexample-NPi6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-csv/openfoodfactsexample-NPi6.xml -------------------------------------------------------------------------------- /morph-examples/examples-csv/openfoodfactsexample.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-csv/openfoodfactsexample.csv -------------------------------------------------------------------------------- /morph-examples/examples-csv/paris-park.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-csv/paris-park.csv -------------------------------------------------------------------------------- /morph-examples/examples-csv/paris-park.r2rml.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-csv/paris-park.r2rml.ttl -------------------------------------------------------------------------------- /morph-examples/examples-csv/preview.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-csv/preview.rq -------------------------------------------------------------------------------- /morph-examples/examples-csv/query1result.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /morph-examples/examples-csv/spain-international1.r2rml.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-csv/spain-international1.r2rml.ttl -------------------------------------------------------------------------------- /morph-examples/examples-csv/spain-national1.r2rml.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-csv/spain-national1.r2rml.ttl -------------------------------------------------------------------------------- /morph-examples/examples-csv/wikidata-batch-csv.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-csv/wikidata-batch-csv.morph.properties -------------------------------------------------------------------------------- /morph-examples/examples-csv/wikidataFestivals1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-csv/wikidataFestivals1.csv -------------------------------------------------------------------------------- /morph-examples/examples-csv/wikidataFestivals1.r2rml.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-csv/wikidataFestivals1.r2rml.ttl -------------------------------------------------------------------------------- /morph-examples/examples-epw/AthensEPWExample-batch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-epw/AthensEPWExample-batch.sh -------------------------------------------------------------------------------- /morph-examples/examples-epw/AthensEPWExample-q01.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-epw/AthensEPWExample-q01.morph.properties -------------------------------------------------------------------------------- /morph-examples/examples-epw/AthensEPWExample-q02.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-epw/AthensEPWExample-q02.morph.properties -------------------------------------------------------------------------------- /morph-examples/examples-epw/AthensEPWExample-q03.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-epw/AthensEPWExample-q03.morph.properties -------------------------------------------------------------------------------- /morph-examples/examples-epw/AthensEPWExample-q1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-epw/AthensEPWExample-q1.sh -------------------------------------------------------------------------------- /morph-examples/examples-epw/AthensEPWExample-q2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-epw/AthensEPWExample-q2.sh -------------------------------------------------------------------------------- /morph-examples/examples-epw/AthensEPWExample-q3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-epw/AthensEPWExample-q3.sh -------------------------------------------------------------------------------- /morph-examples/examples-epw/AthensEPWExample.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-epw/AthensEPWExample.csv -------------------------------------------------------------------------------- /morph-examples/examples-epw/AthensEPWExample.r2rml.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-epw/AthensEPWExample.r2rml.ttl -------------------------------------------------------------------------------- /morph-examples/examples-epw/EPWExample-q01.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-epw/EPWExample-q01.rq -------------------------------------------------------------------------------- /morph-examples/examples-epw/EPWExample-q02.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-epw/EPWExample-q02.rq -------------------------------------------------------------------------------- /morph-examples/examples-epw/EPWExample-q03.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-epw/EPWExample-q03.rq -------------------------------------------------------------------------------- /morph-examples/examples-epw/MadridEPWExample-batch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-epw/MadridEPWExample-batch.sh -------------------------------------------------------------------------------- /morph-examples/examples-epw/MadridEPWExample-q01.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-epw/MadridEPWExample-q01.morph.properties -------------------------------------------------------------------------------- /morph-examples/examples-epw/MadridEPWExample-q02.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-epw/MadridEPWExample-q02.morph.properties -------------------------------------------------------------------------------- /morph-examples/examples-epw/MadridEPWExample-q03.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-epw/MadridEPWExample-q03.morph.properties -------------------------------------------------------------------------------- /morph-examples/examples-epw/MadridEPWExample-q1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-epw/MadridEPWExample-q1.sh -------------------------------------------------------------------------------- /morph-examples/examples-epw/MadridEPWExample-q2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-epw/MadridEPWExample-q2.sh -------------------------------------------------------------------------------- /morph-examples/examples-epw/MadridEPWExample-q3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-epw/MadridEPWExample-q3.sh -------------------------------------------------------------------------------- /morph-examples/examples-epw/MadridEPWExample.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-epw/MadridEPWExample.csv -------------------------------------------------------------------------------- /morph-examples/examples-epw/MadridEPWExample.r2rml.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-epw/MadridEPWExample.r2rml.ttl -------------------------------------------------------------------------------- /morph-examples/examples-epw/MadridEPWExampleMappings.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-epw/MadridEPWExampleMappings.xlsx -------------------------------------------------------------------------------- /morph-examples/examples-eurostat/eurostatimmigration-query1.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-eurostat/eurostatimmigration-query1.rq -------------------------------------------------------------------------------- /morph-examples/examples-eurostat/eurostatimmigration-query2.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-eurostat/eurostatimmigration-query2.rq -------------------------------------------------------------------------------- /morph-examples/examples-eurostat/eurostatimmigration-query3.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-eurostat/eurostatimmigration-query3.rq -------------------------------------------------------------------------------- /morph-examples/examples-eurostat/eurostatimmigration.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-eurostat/eurostatimmigration.csv -------------------------------------------------------------------------------- /morph-examples/examples-eurostat/eurostatpopulation.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-eurostat/eurostatpopulation.csv -------------------------------------------------------------------------------- /morph-examples/examples-gtfs-bcn/agency.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-gtfs-bcn/agency.txt -------------------------------------------------------------------------------- /morph-examples/examples-gtfs-bcn/barnaTram.r2rml.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-gtfs-bcn/barnaTram.r2rml.ttl -------------------------------------------------------------------------------- /morph-examples/examples-gtfs-bcn/calendar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-gtfs-bcn/calendar.txt -------------------------------------------------------------------------------- /morph-examples/examples-gtfs-bcn/calendar_dates.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-gtfs-bcn/calendar_dates.txt -------------------------------------------------------------------------------- /morph-examples/examples-gtfs-bcn/routes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-gtfs-bcn/routes.txt -------------------------------------------------------------------------------- /morph-examples/examples-gtfs-bcn/shapes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-gtfs-bcn/shapes.txt -------------------------------------------------------------------------------- /morph-examples/examples-gtfs-bcn/stop_times.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-gtfs-bcn/stop_times.txt -------------------------------------------------------------------------------- /morph-examples/examples-gtfs-bcn/stops.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-gtfs-bcn/stops.txt -------------------------------------------------------------------------------- /morph-examples/examples-gtfs-bcn/trips.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-gtfs-bcn/trips.txt -------------------------------------------------------------------------------- /morph-examples/examples-gtfs-mysql/gtfs-rdb.r2rml.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-gtfs-mysql/gtfs-rdb.r2rml.ttl -------------------------------------------------------------------------------- /morph-examples/examples-gtfs-mysql/original/q1.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-gtfs-mysql/original/q1.rq -------------------------------------------------------------------------------- /morph-examples/examples-gtfs-mysql/original/q10.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-gtfs-mysql/original/q10.rq -------------------------------------------------------------------------------- /morph-examples/examples-gtfs-mysql/original/q11.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-gtfs-mysql/original/q11.rq -------------------------------------------------------------------------------- /morph-examples/examples-gtfs-mysql/original/q12.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-gtfs-mysql/original/q12.rq -------------------------------------------------------------------------------- /morph-examples/examples-gtfs-mysql/original/q13.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-gtfs-mysql/original/q13.rq -------------------------------------------------------------------------------- /morph-examples/examples-gtfs-mysql/original/q14.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-gtfs-mysql/original/q14.rq -------------------------------------------------------------------------------- /morph-examples/examples-gtfs-mysql/original/q15.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-gtfs-mysql/original/q15.rq -------------------------------------------------------------------------------- /morph-examples/examples-gtfs-mysql/original/q16.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-gtfs-mysql/original/q16.rq -------------------------------------------------------------------------------- /morph-examples/examples-gtfs-mysql/original/q17.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-gtfs-mysql/original/q17.rq -------------------------------------------------------------------------------- /morph-examples/examples-gtfs-mysql/original/q18.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-gtfs-mysql/original/q18.rq -------------------------------------------------------------------------------- /morph-examples/examples-gtfs-mysql/original/q2.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-gtfs-mysql/original/q2.rq -------------------------------------------------------------------------------- /morph-examples/examples-gtfs-mysql/original/q3.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-gtfs-mysql/original/q3.rq -------------------------------------------------------------------------------- /morph-examples/examples-gtfs-mysql/original/q4.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-gtfs-mysql/original/q4.rq -------------------------------------------------------------------------------- /morph-examples/examples-gtfs-mysql/original/q5.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-gtfs-mysql/original/q5.rq -------------------------------------------------------------------------------- /morph-examples/examples-gtfs-mysql/original/q6.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-gtfs-mysql/original/q6.rq -------------------------------------------------------------------------------- /morph-examples/examples-gtfs-mysql/original/q7.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-gtfs-mysql/original/q7.rq -------------------------------------------------------------------------------- /morph-examples/examples-gtfs-mysql/original/q8.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-gtfs-mysql/original/q8.rq -------------------------------------------------------------------------------- /morph-examples/examples-gtfs-mysql/original/q9.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-gtfs-mysql/original/q9.rq -------------------------------------------------------------------------------- /morph-examples/examples-gtfs-mysql/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-gtfs-mysql/schema.sql -------------------------------------------------------------------------------- /morph-examples/examples-gtfs-mysql/vig/q1.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-gtfs-mysql/vig/q1.rq -------------------------------------------------------------------------------- /morph-examples/examples-gtfs-mysql/vig/q10.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-gtfs-mysql/vig/q10.rq -------------------------------------------------------------------------------- /morph-examples/examples-gtfs-mysql/vig/q11.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-gtfs-mysql/vig/q11.rq -------------------------------------------------------------------------------- /morph-examples/examples-gtfs-mysql/vig/q12.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-gtfs-mysql/vig/q12.rq -------------------------------------------------------------------------------- /morph-examples/examples-gtfs-mysql/vig/q13.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-gtfs-mysql/vig/q13.rq -------------------------------------------------------------------------------- /morph-examples/examples-gtfs-mysql/vig/q14.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-gtfs-mysql/vig/q14.rq -------------------------------------------------------------------------------- /morph-examples/examples-gtfs-mysql/vig/q15.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-gtfs-mysql/vig/q15.rq -------------------------------------------------------------------------------- /morph-examples/examples-gtfs-mysql/vig/q16.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-gtfs-mysql/vig/q16.rq -------------------------------------------------------------------------------- /morph-examples/examples-gtfs-mysql/vig/q17.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-gtfs-mysql/vig/q17.rq -------------------------------------------------------------------------------- /morph-examples/examples-gtfs-mysql/vig/q18.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-gtfs-mysql/vig/q18.rq -------------------------------------------------------------------------------- /morph-examples/examples-gtfs-mysql/vig/q2.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-gtfs-mysql/vig/q2.rq -------------------------------------------------------------------------------- /morph-examples/examples-gtfs-mysql/vig/q3.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-gtfs-mysql/vig/q3.rq -------------------------------------------------------------------------------- /morph-examples/examples-gtfs-mysql/vig/q4.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-gtfs-mysql/vig/q4.rq -------------------------------------------------------------------------------- /morph-examples/examples-gtfs-mysql/vig/q5.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-gtfs-mysql/vig/q5.rq -------------------------------------------------------------------------------- /morph-examples/examples-gtfs-mysql/vig/q6.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-gtfs-mysql/vig/q6.rq -------------------------------------------------------------------------------- /morph-examples/examples-gtfs-mysql/vig/q7.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-gtfs-mysql/vig/q7.rq -------------------------------------------------------------------------------- /morph-examples/examples-gtfs-mysql/vig/q8.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-gtfs-mysql/vig/q8.rq -------------------------------------------------------------------------------- /morph-examples/examples-gtfs-mysql/vig/q9.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-gtfs-mysql/vig/q9.rq -------------------------------------------------------------------------------- /morph-examples/examples-gtfs/gtfs.r2rml.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-gtfs/gtfs.r2rml.ttl -------------------------------------------------------------------------------- /morph-examples/examples-h2/example1-batch-h2.r2rml.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-h2/example1-batch-h2.r2rml.properties -------------------------------------------------------------------------------- /morph-examples/examples-h2/example1-batch-result-h2.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-h2/example1-batch-result-h2.nt -------------------------------------------------------------------------------- /morph-examples/examples-h2/example1-batch-result-h2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-h2/example1-batch-result-h2.xml -------------------------------------------------------------------------------- /morph-examples/examples-h2/example1-mapping-h2.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-h2/example1-mapping-h2.ttl -------------------------------------------------------------------------------- /morph-examples/examples-h2/example1-mapping-h2b.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-h2/example1-mapping-h2b.ttl -------------------------------------------------------------------------------- /morph-examples/examples-h2/example1-query01-h2.r2rml.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-h2/example1-query01-h2.r2rml.properties -------------------------------------------------------------------------------- /morph-examples/examples-h2/example1-query01-result-h2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-h2/example1-query01-result-h2.xml -------------------------------------------------------------------------------- /morph-examples/examples-h2/example1-query01.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-h2/example1-query01.rq -------------------------------------------------------------------------------- /morph-examples/examples-h2/example1-query02-h2.r2rml.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-h2/example1-query02-h2.r2rml.properties -------------------------------------------------------------------------------- /morph-examples/examples-h2/example1-query02-result-h2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-h2/example1-query02-result-h2.xml -------------------------------------------------------------------------------- /morph-examples/examples-h2/example1-query02.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-h2/example1-query02.rq -------------------------------------------------------------------------------- /morph-examples/examples-h2/example1-query03-h2.r2rml.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-h2/example1-query03-h2.r2rml.properties -------------------------------------------------------------------------------- /morph-examples/examples-h2/example1-query03-result-h2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-h2/example1-query03-result-h2.xml -------------------------------------------------------------------------------- /morph-examples/examples-h2/example1-query03.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-h2/example1-query03.rq -------------------------------------------------------------------------------- /morph-examples/examples-h2/example1-query04-h2.r2rml.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-h2/example1-query04-h2.r2rml.properties -------------------------------------------------------------------------------- /morph-examples/examples-h2/example1-query04-result-h2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-h2/example1-query04-result-h2.xml -------------------------------------------------------------------------------- /morph-examples/examples-h2/example1-query04.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-h2/example1-query04.rq -------------------------------------------------------------------------------- /morph-examples/examples-h2/example1-query05-h2.r2rml.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-h2/example1-query05-h2.r2rml.properties -------------------------------------------------------------------------------- /morph-examples/examples-h2/example1-query05-result-h2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-h2/example1-query05-result-h2.xml -------------------------------------------------------------------------------- /morph-examples/examples-h2/example1-query05.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-h2/example1-query05.rq -------------------------------------------------------------------------------- /morph-examples/examples-h2/example1-query06-result-h2.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /morph-examples/examples-h2/h2-example1-batch.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-h2/h2-example1-batch.bat -------------------------------------------------------------------------------- /morph-examples/examples-h2/h2-example1-batch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-h2/h2-example1-batch.sh -------------------------------------------------------------------------------- /morph-examples/examples-h2/h2-example1-query01.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-h2/h2-example1-query01.bat -------------------------------------------------------------------------------- /morph-examples/examples-h2/h2-example1-query01.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-h2/h2-example1-query01.sh -------------------------------------------------------------------------------- /morph-examples/examples-h2/h2-example1-query02.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-h2/h2-example1-query02.bat -------------------------------------------------------------------------------- /morph-examples/examples-h2/h2-example1-query02.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-h2/h2-example1-query02.sh -------------------------------------------------------------------------------- /morph-examples/examples-h2/h2-example1-query03.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-h2/h2-example1-query03.bat -------------------------------------------------------------------------------- /morph-examples/examples-h2/h2-example1-query03.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-h2/h2-example1-query03.sh -------------------------------------------------------------------------------- /morph-examples/examples-h2/h2-example1-query04.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-h2/h2-example1-query04.bat -------------------------------------------------------------------------------- /morph-examples/examples-h2/h2-example1-query04.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-h2/h2-example1-query04.sh -------------------------------------------------------------------------------- /morph-examples/examples-h2/h2-example1-query05.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-h2/h2-example1-query05.bat -------------------------------------------------------------------------------- /morph-examples/examples-h2/h2-example1-query05.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-h2/h2-example1-query05.sh -------------------------------------------------------------------------------- /morph-examples/examples-h2/morph-example.h2.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-h2/morph-example.h2.db -------------------------------------------------------------------------------- /morph-examples/examples-h2/morph-example.trace.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-h2/morph-example.trace.db -------------------------------------------------------------------------------- /morph-examples/examples-mysql/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-mysql/Dockerfile -------------------------------------------------------------------------------- /morph-examples/examples-mysql/compose.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-mysql/compose.sh -------------------------------------------------------------------------------- /morph-examples/examples-mysql/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-mysql/docker-compose.yml -------------------------------------------------------------------------------- /morph-examples/examples-mysql/edificiohistorico-mysql.r2rml.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-mysql/edificiohistorico-mysql.r2rml.ttl -------------------------------------------------------------------------------- /morph-examples/examples-mysql/example1-batch-result-mysql.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-mysql/example1-batch-result-mysql.nt -------------------------------------------------------------------------------- /morph-examples/examples-mysql/example1-mapping-mysql.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-mysql/example1-mapping-mysql.ttl -------------------------------------------------------------------------------- /morph-examples/examples-mysql/example1-query01-result-mysql.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-mysql/example1-query01-result-mysql.xml -------------------------------------------------------------------------------- /morph-examples/examples-mysql/example1-query01.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-mysql/example1-query01.rq -------------------------------------------------------------------------------- /morph-examples/examples-mysql/example1-query02-result-mysql.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-mysql/example1-query02-result-mysql.xml -------------------------------------------------------------------------------- /morph-examples/examples-mysql/example1-query02.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-mysql/example1-query02.rq -------------------------------------------------------------------------------- /morph-examples/examples-mysql/example1-query03-result-mysql.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-mysql/example1-query03-result-mysql.xml -------------------------------------------------------------------------------- /morph-examples/examples-mysql/example1-query03.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-mysql/example1-query03.rq -------------------------------------------------------------------------------- /morph-examples/examples-mysql/example1-query04-result-mysql.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-mysql/example1-query04-result-mysql.xml -------------------------------------------------------------------------------- /morph-examples/examples-mysql/example1-query04.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-mysql/example1-query04.rq -------------------------------------------------------------------------------- /morph-examples/examples-mysql/example1-query05-result-mysql.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-mysql/example1-query05-result-mysql.xml -------------------------------------------------------------------------------- /morph-examples/examples-mysql/example1-query05.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-mysql/example1-query05.rq -------------------------------------------------------------------------------- /morph-examples/examples-mysql/example1-query06-result-mysql.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-mysql/example1-query06-result-mysql.xml -------------------------------------------------------------------------------- /morph-examples/examples-mysql/example1-query06.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-mysql/example1-query06.rq -------------------------------------------------------------------------------- /morph-examples/examples-mysql/example2-batch-result-mysql.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-mysql/example2-batch-result-mysql.nt -------------------------------------------------------------------------------- /morph-examples/examples-mysql/example2-mapping-mysql.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-mysql/example2-mapping-mysql.ttl -------------------------------------------------------------------------------- /morph-examples/examples-mysql/example2-query07-result-mysql.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-mysql/example2-query07-result-mysql.xml -------------------------------------------------------------------------------- /morph-examples/examples-mysql/example2-query07.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-mysql/example2-query07.rq -------------------------------------------------------------------------------- /morph-examples/examples-mysql/monumento-batch-result-mysql.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-mysql/monumento-batch-result-mysql.nt -------------------------------------------------------------------------------- /morph-examples/examples-mysql/monumento-mysql.r2rml.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-mysql/monumento-mysql.r2rml.ttl -------------------------------------------------------------------------------- /morph-examples/examples-mysql/morph_example.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-mysql/morph_example.sql -------------------------------------------------------------------------------- /morph-examples/examples-mysql/mysql-example1-batch.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-mysql/mysql-example1-batch.bat -------------------------------------------------------------------------------- /morph-examples/examples-mysql/mysql-example1-batch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-mysql/mysql-example1-batch.sh -------------------------------------------------------------------------------- /morph-examples/examples-mysql/mysql-example1-query01.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-mysql/mysql-example1-query01.bat -------------------------------------------------------------------------------- /morph-examples/examples-mysql/mysql-example1-query01.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-mysql/mysql-example1-query01.sh -------------------------------------------------------------------------------- /morph-examples/examples-mysql/mysql-example1-query02.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-mysql/mysql-example1-query02.bat -------------------------------------------------------------------------------- /morph-examples/examples-mysql/mysql-example1-query02.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-mysql/mysql-example1-query02.sh -------------------------------------------------------------------------------- /morph-examples/examples-mysql/mysql-example1-query03.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-mysql/mysql-example1-query03.bat -------------------------------------------------------------------------------- /morph-examples/examples-mysql/mysql-example1-query03.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-mysql/mysql-example1-query03.sh -------------------------------------------------------------------------------- /morph-examples/examples-mysql/mysql-example1-query04.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-mysql/mysql-example1-query04.bat -------------------------------------------------------------------------------- /morph-examples/examples-mysql/mysql-example1-query04.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-mysql/mysql-example1-query04.sh -------------------------------------------------------------------------------- /morph-examples/examples-mysql/mysql-example1-query05.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-mysql/mysql-example1-query05.bat -------------------------------------------------------------------------------- /morph-examples/examples-mysql/mysql-example1-query05.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-mysql/mysql-example1-query05.sh -------------------------------------------------------------------------------- /morph-examples/examples-mysql/mysql-example2-batch.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-mysql/mysql-example2-batch.bat -------------------------------------------------------------------------------- /morph-examples/examples-mysql/mysql-example2-query07.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-mysql/mysql-example2-query07.bat -------------------------------------------------------------------------------- /morph-examples/examples-mysql/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-mysql/run.sh -------------------------------------------------------------------------------- /morph-examples/examples-mysql/sql-scripts/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-mysql/sql-scripts/Dockerfile -------------------------------------------------------------------------------- /morph-examples/examples-mysql/sql-scripts/morph_example.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-mysql/sql-scripts/morph_example.sql -------------------------------------------------------------------------------- /morph-examples/examples-mysql/sql-scripts/run.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-mysql/sql-scripts/run.bat -------------------------------------------------------------------------------- /morph-examples/examples-mysql/sql-scripts/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-mysql/sql-scripts/run.sh -------------------------------------------------------------------------------- /morph-examples/examples-oracle/example1-batch-oracle.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-oracle/example1-batch-oracle.bat -------------------------------------------------------------------------------- /morph-examples/examples-oracle/example1-batch-oracle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-oracle/example1-batch-oracle.sh -------------------------------------------------------------------------------- /morph-examples/examples-oracle/example1-batch-result-oracle.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-oracle/example1-batch-result-oracle.nt -------------------------------------------------------------------------------- /morph-examples/examples-oracle/example1-mapping-oracle.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-oracle/example1-mapping-oracle.ttl -------------------------------------------------------------------------------- /morph-examples/examples-oracle/example1-query01-oracle.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-oracle/example1-query01-oracle.bat -------------------------------------------------------------------------------- /morph-examples/examples-oracle/example1-query01-oracle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-oracle/example1-query01-oracle.sh -------------------------------------------------------------------------------- /morph-examples/examples-oracle/example1-query01-result-oracle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-oracle/example1-query01-result-oracle.xml -------------------------------------------------------------------------------- /morph-examples/examples-oracle/example1-query01.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-oracle/example1-query01.rq -------------------------------------------------------------------------------- /morph-examples/examples-oracle/example1-query02-oracle.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-oracle/example1-query02-oracle.bat -------------------------------------------------------------------------------- /morph-examples/examples-oracle/example1-query02-oracle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-oracle/example1-query02-oracle.sh -------------------------------------------------------------------------------- /morph-examples/examples-oracle/example1-query02-result-oracle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-oracle/example1-query02-result-oracle.xml -------------------------------------------------------------------------------- /morph-examples/examples-oracle/example1-query02.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-oracle/example1-query02.rq -------------------------------------------------------------------------------- /morph-examples/examples-oracle/example1-query03-oracle.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-oracle/example1-query03-oracle.bat -------------------------------------------------------------------------------- /morph-examples/examples-oracle/example1-query03-oracle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-oracle/example1-query03-oracle.sh -------------------------------------------------------------------------------- /morph-examples/examples-oracle/example1-query03-result-oracle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-oracle/example1-query03-result-oracle.xml -------------------------------------------------------------------------------- /morph-examples/examples-oracle/example1-query03.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-oracle/example1-query03.rq -------------------------------------------------------------------------------- /morph-examples/examples-oracle/example1-query04-oracle.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-oracle/example1-query04-oracle.bat -------------------------------------------------------------------------------- /morph-examples/examples-oracle/example1-query04-oracle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-oracle/example1-query04-oracle.sh -------------------------------------------------------------------------------- /morph-examples/examples-oracle/example1-query04-result-oracle.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /morph-examples/examples-oracle/example1-query04.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-oracle/example1-query04.rq -------------------------------------------------------------------------------- /morph-examples/examples-oracle/example1-query05-oracle.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-oracle/example1-query05-oracle.bat -------------------------------------------------------------------------------- /morph-examples/examples-oracle/example1-query05-oracle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-oracle/example1-query05-oracle.sh -------------------------------------------------------------------------------- /morph-examples/examples-oracle/example1-query05-result-oracle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-oracle/example1-query05-result-oracle.xml -------------------------------------------------------------------------------- /morph-examples/examples-oracle/example1-query05.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-oracle/example1-query05.rq -------------------------------------------------------------------------------- /morph-examples/examples-postgresql/aact-query1-result.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-postgresql/aact-query1-result.nt -------------------------------------------------------------------------------- /morph-examples/examples-postgresql/aact-query1.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-postgresql/aact-query1.rq -------------------------------------------------------------------------------- /morph-examples/examples-postgresql/aact-query1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-postgresql/aact-query1.sh -------------------------------------------------------------------------------- /morph-examples/examples-postgresql/batch-postgresql-result.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-postgresql/batch-postgresql-result.nt -------------------------------------------------------------------------------- /morph-examples/examples-postgresql/batch-postgresql2-result.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-postgresql/batch-postgresql2-result.nt -------------------------------------------------------------------------------- /morph-examples/examples-postgresql/example(posgresql).ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-postgresql/example(posgresql).ttl -------------------------------------------------------------------------------- /morph-examples/examples-postgresql/example1-query01.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-postgresql/example1-query01.rq -------------------------------------------------------------------------------- /morph-examples/examples-postgresql/example1-query02.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-postgresql/example1-query02.rq -------------------------------------------------------------------------------- /morph-examples/examples-postgresql/example1-query03.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-postgresql/example1-query03.rq -------------------------------------------------------------------------------- /morph-examples/examples-postgresql/example1-query04.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-postgresql/example1-query04.rq -------------------------------------------------------------------------------- /morph-examples/examples-postgresql/example1-query05.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-postgresql/example1-query05.rq -------------------------------------------------------------------------------- /morph-examples/examples-postgresql/example1-query06.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-postgresql/example1-query06.rq -------------------------------------------------------------------------------- /morph-examples/examples-postgresql/example2(posgresql).ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-postgresql/example2(posgresql).ttl -------------------------------------------------------------------------------- /morph-examples/examples-postgresql/morph_example(postgresql).sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-postgresql/morph_example(postgresql).sql -------------------------------------------------------------------------------- /morph-examples/examples-postgresql/query01-postgresql-result.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-postgresql/query01-postgresql-result.xml -------------------------------------------------------------------------------- /morph-examples/examples-postgresql/query02-postgresql-result.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-postgresql/query02-postgresql-result.xml -------------------------------------------------------------------------------- /morph-examples/examples-postgresql/query03-postgresql-result.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-postgresql/query03-postgresql-result.xml -------------------------------------------------------------------------------- /morph-examples/examples-postgresql/query04-postgresql-result.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /morph-examples/examples-postgresql/query05-postgresql-result.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /morph-examples/examples-postgresql/query06-postgresql-result.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-postgresql/query06-postgresql-result.xml -------------------------------------------------------------------------------- /morph-examples/examples-postgresql/query11-postgresql-result.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-postgresql/query11-postgresql-result.xml -------------------------------------------------------------------------------- /morph-examples/examples-postgresql/query12-postgresql-result.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-postgresql/query12-postgresql-result.xml -------------------------------------------------------------------------------- /morph-examples/examples-srilanka-tourism/2012-P21.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-srilanka-tourism/2012-P21.csv -------------------------------------------------------------------------------- /morph-examples/examples-srilanka-tourism/2012-P21.r2rml.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-srilanka-tourism/2012-P21.r2rml.ttl -------------------------------------------------------------------------------- /morph-examples/examples-srilanka-tourism/2013-P21.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-srilanka-tourism/2013-P21.csv -------------------------------------------------------------------------------- /morph-examples/examples-srilanka-tourism/2013-P21.r2rml.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-srilanka-tourism/2013-P21.r2rml.ttl -------------------------------------------------------------------------------- /morph-examples/examples-srilanka-tourism/2014-P21.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-srilanka-tourism/2014-P21.csv -------------------------------------------------------------------------------- /morph-examples/examples-srilanka-tourism/2014-P21.r2rml.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-srilanka-tourism/2014-P21.r2rml.ttl -------------------------------------------------------------------------------- /morph-examples/examples-srilanka-tourism/2015-P23.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-srilanka-tourism/2015-P23.csv -------------------------------------------------------------------------------- /morph-examples/examples-srilanka-tourism/2015-P23.r2rml.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-srilanka-tourism/2015-P23.r2rml.ttl -------------------------------------------------------------------------------- /morph-examples/examples-srilanka-tourism/2016-P21-Transposed.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-srilanka-tourism/2016-P21-Transposed.csv -------------------------------------------------------------------------------- /morph-examples/examples-srilanka-tourism/2016-P21-naive.r2rml.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-srilanka-tourism/2016-P21-naive.r2rml.ttl -------------------------------------------------------------------------------- /morph-examples/examples-srilanka-tourism/2016-P21-query1.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-srilanka-tourism/2016-P21-query1.rq -------------------------------------------------------------------------------- /morph-examples/examples-srilanka-tourism/2016-P21-query1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-srilanka-tourism/2016-P21-query1.sql -------------------------------------------------------------------------------- /morph-examples/examples-srilanka-tourism/2016-P21-query2.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-srilanka-tourism/2016-P21-query2.rq -------------------------------------------------------------------------------- /morph-examples/examples-srilanka-tourism/2016-P21-query2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-srilanka-tourism/2016-P21-query2.sql -------------------------------------------------------------------------------- /morph-examples/examples-srilanka-tourism/2016-P21-query3.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-srilanka-tourism/2016-P21-query3.rq -------------------------------------------------------------------------------- /morph-examples/examples-srilanka-tourism/2016-P21-query3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-srilanka-tourism/2016-P21-query3.sql -------------------------------------------------------------------------------- /morph-examples/examples-srilanka-tourism/2016-P21-range.r2rml.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-srilanka-tourism/2016-P21-range.r2rml.ttl -------------------------------------------------------------------------------- /morph-examples/examples-srilanka-tourism/2016-P21-range.rmlc.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-srilanka-tourism/2016-P21-range.rmlc.ttl -------------------------------------------------------------------------------- /morph-examples/examples-srilanka-tourism/2016-P21-transposed-naive-batch-result.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /morph-examples/examples-srilanka-tourism/2016-P21.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-srilanka-tourism/2016-P21.csv -------------------------------------------------------------------------------- /morph-examples/examples-stat-wales/StatWales.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-stat-wales/StatWales.csv -------------------------------------------------------------------------------- /morph-examples/examples-stat-wales/StatWales.r2rml.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples-stat-wales/StatWales.r2rml.ttl -------------------------------------------------------------------------------- /morph-examples/examples/PatientOntoBGP-result.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /morph-examples/examples/PatientOntoBGP.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples/PatientOntoBGP.q -------------------------------------------------------------------------------- /morph-examples/examples/PatientOntoOSTG-result.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /morph-examples/examples/PatientOntoOSTG.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples/PatientOntoOSTG.q -------------------------------------------------------------------------------- /morph-examples/examples/PatientOntoPT-result.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /morph-examples/examples/PatientOntoPT.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples/PatientOntoPT.q -------------------------------------------------------------------------------- /morph-examples/examples/PatientOntoSTG-result.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /morph-examples/examples/PatientOntoSTG.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples/PatientOntoSTG.q -------------------------------------------------------------------------------- /morph-examples/examples/PatientOntoTP-result.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /morph-examples/examples/PatientOntoTP.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples/PatientOntoTP.q -------------------------------------------------------------------------------- /morph-examples/examples/batch-oracle-result.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /morph-examples/examples/batch-oracle.r2rml.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples/batch-oracle.r2rml.properties -------------------------------------------------------------------------------- /morph-examples/examples/example-oracle.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples/example-oracle.ttl -------------------------------------------------------------------------------- /morph-examples/examples/example_patient.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples/example_patient.ttl -------------------------------------------------------------------------------- /morph-examples/examples/example_patientBGP.r2rml.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples/example_patientBGP.r2rml.properties -------------------------------------------------------------------------------- /morph-examples/examples/example_patientOSTG.r2rml.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples/example_patientOSTG.r2rml.properties -------------------------------------------------------------------------------- /morph-examples/examples/example_patientPT.r2rml.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples/example_patientPT.r2rml.properties -------------------------------------------------------------------------------- /morph-examples/examples/example_patientSTG.r2rml.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples/example_patientSTG.r2rml.properties -------------------------------------------------------------------------------- /morph-examples/examples/example_patientTP.r2rml.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples/example_patientTP.r2rml.properties -------------------------------------------------------------------------------- /morph-examples/examples/example_university.r2rml.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples/example_university.r2rml.properties -------------------------------------------------------------------------------- /morph-examples/examples/query11.sparql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples/query11.sparql -------------------------------------------------------------------------------- /morph-examples/examples/query12.sparql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples/query12.sparql -------------------------------------------------------------------------------- /morph-examples/examples/querypatient01-result.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples/querypatient01-result.xml -------------------------------------------------------------------------------- /morph-examples/examples/querypatient01.sparql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/examples/querypatient01.sparql -------------------------------------------------------------------------------- /morph-examples/log4j2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/log4j2.xml -------------------------------------------------------------------------------- /morph-examples/morph-rdb-dist-3.9.16.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/morph-rdb-dist-3.9.16.jar -------------------------------------------------------------------------------- /morph-examples/morph-rdb-dist-3.9.17.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/morph-rdb-dist-3.9.17.jar -------------------------------------------------------------------------------- /morph-examples/morph-rdb.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/morph-rdb.jar -------------------------------------------------------------------------------- /morph-examples/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/pom.xml -------------------------------------------------------------------------------- /morph-examples/src/main/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/src/main/resources/log4j.properties -------------------------------------------------------------------------------- /morph-examples/src/main/resources/log4j2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/src/main/resources/log4j2.xml -------------------------------------------------------------------------------- /morph-examples/src/test/java/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/src/test/java/log4j.properties -------------------------------------------------------------------------------- /morph-examples/src/test/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/src/test/log4j.properties -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/D000-1table1column0rows/create.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/D000-1table1column0rows/create.sql -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/D000-1table1column0rows/d000.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/D000-1table1column0rows/d000.sql -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/D000-1table1column0rows/mapped.nq: -------------------------------------------------------------------------------- 1 | # empty database 2 | -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/D000-1table1column0rows/r2rml.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/D000-1table1column0rows/r2rml.ttl -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/D001-1table1column1row/create.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/D001-1table1column1row/create.sql -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/D001-1table1column1row/d001.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/D001-1table1column1row/d001.sql -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/D001-1table1column1row/mappeda.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/D001-1table1column1row/mappeda.nq -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/D001-1table1column1row/mappedb-morph.nq: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/D001-1table1column1row/mappedb.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/D001-1table1column1row/mappedb.nq -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/D001-1table1column1row/r2rmla.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/D001-1table1column1row/r2rmla.ttl -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/D001-1table1column1row/r2rmlb.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/D001-1table1column1row/r2rmlb.ttl -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/D002-1table2columns1row/create.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/D002-1table2columns1row/create.sql -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/D002-1table2columns1row/d002.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/D002-1table2columns1row/d002.sql -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/D002-1table2columns1row/mappeda.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/D002-1table2columns1row/mappeda.nq -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/D002-1table2columns1row/mappedb-morph.nq: -------------------------------------------------------------------------------- 1 | _:students10 "Venus" . 2 | -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/D002-1table2columns1row/mappedb.nq: -------------------------------------------------------------------------------- 1 | _:students10 "Venus" . 2 | -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/D002-1table2columns1row/mappedc-morph.nq: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/D002-1table2columns1row/mappedd-morph.nq: -------------------------------------------------------------------------------- 1 | _:Student10 "Venus" . 2 | -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/D002-1table2columns1row/mappedd.nq: -------------------------------------------------------------------------------- 1 | _:Student10 "Venus" . -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/D002-1table2columns1row/mappede-morph.nq: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/D002-1table2columns1row/mappedg-morph.nq: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/D002-1table2columns1row/mappedh-morph.nq: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/D002-1table2columns1row/mappedi.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/D002-1table2columns1row/mappedi.nq -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/D002-1table2columns1row/mappedj.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/D002-1table2columns1row/mappedj.nq -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/D002-1table2columns1row/r2rmla.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/D002-1table2columns1row/r2rmla.ttl -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/D002-1table2columns1row/r2rmlb.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/D002-1table2columns1row/r2rmlb.ttl -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/D002-1table2columns1row/r2rmlc.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/D002-1table2columns1row/r2rmlc.ttl -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/D002-1table2columns1row/r2rmld.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/D002-1table2columns1row/r2rmld.ttl -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/D002-1table2columns1row/r2rmle.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/D002-1table2columns1row/r2rmle.ttl -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/D002-1table2columns1row/r2rmlf.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/D002-1table2columns1row/r2rmlf.ttl -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/D002-1table2columns1row/r2rmlg.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/D002-1table2columns1row/r2rmlg.ttl -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/D002-1table2columns1row/r2rmlh.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/D002-1table2columns1row/r2rmlh.ttl -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/D002-1table2columns1row/r2rmli.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/D002-1table2columns1row/r2rmli.ttl -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/D002-1table2columns1row/r2rmlj.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/D002-1table2columns1row/r2rmlj.ttl -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/D003-1table3columns1row/create.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/D003-1table3columns1row/create.sql -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/D003-1table3columns1row/d003.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/D003-1table3columns1row/d003.sql -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/D003-1table3columns1row/mappedb.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/D003-1table3columns1row/mappedb.nq -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/D003-1table3columns1row/mappedc.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/D003-1table3columns1row/mappedc.nq -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/D003-1table3columns1row/r2rmla.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/D003-1table3columns1row/r2rmla.ttl -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/D003-1table3columns1row/r2rmlb.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/D003-1table3columns1row/r2rmlb.ttl -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/D003-1table3columns1row/r2rmlc.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/D003-1table3columns1row/r2rmlc.ttl -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/D004-1table2columns1row/create.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/D004-1table2columns1row/create.sql -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/D004-1table2columns1row/d004.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/D004-1table2columns1row/d004.sql -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/D004-1table2columns1row/mappeda.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/D004-1table2columns1row/mappeda.nq -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/D004-1table2columns1row/r2rmla.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/D004-1table2columns1row/r2rmla.ttl -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/D004-1table2columns1row/r2rmlb.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/D004-1table2columns1row/r2rmlb.ttl -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/D011-M2MRelations/create.mysql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/D011-M2MRelations/create.mysql.sql -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/D011-M2MRelations/create.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/D011-M2MRelations/create.sql -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/D011-M2MRelations/d011.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/D011-M2MRelations/d011.sql -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/D011-M2MRelations/d011b.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/D011-M2MRelations/d011b.sql -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/D011-M2MRelations/directGraph.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/D011-M2MRelations/directGraph.ttl -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/D011-M2MRelations/manifest.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/D011-M2MRelations/manifest.ttl -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/D011-M2MRelations/mappeda-morph.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/D011-M2MRelations/mappeda-morph.nq -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/D011-M2MRelations/mappeda.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/D011-M2MRelations/mappeda.nq -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/D011-M2MRelations/mappedb-morph.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/D011-M2MRelations/mappedb-morph.nq -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/D011-M2MRelations/mappedb.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/D011-M2MRelations/mappedb.nq -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/D011-M2MRelations/r2rmla.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/D011-M2MRelations/r2rmla.ttl -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/D011-M2MRelations/r2rmlb.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/D011-M2MRelations/r2rmlb.ttl -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/D014-3tables1primarykey1foreignkey/mappeda-morph.nq: -------------------------------------------------------------------------------- 1 | _:Department10 "NEW YORK" . 2 | -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/D014-3tables1primarykey1foreignkey/mappeda.nq: -------------------------------------------------------------------------------- 1 | _:Department10 "NEW YORK" . 2 | -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/D017-I18NnoSpecialChars/create.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/D017-I18NnoSpecialChars/create.sql -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/D020-1table1column5rows/d020.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/D020-1table1column5rows/d020.sql -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/D020-1table1column5rows/mappeda.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/D020-1table1column5rows/mappeda.nq -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/D020-1table1column5rows/r2rmla.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/D020-1table1column5rows/r2rmla.ttl -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/D020-1table1column5rows/r2rmlb.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/D020-1table1column5rows/r2rmlb.ttl -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/DirectGraphTC0000.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/DirectGraphTC0000.bat -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/DirectGraphTC0000.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/DirectGraphTC0000.sh -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/DirectGraphTC0001.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/DirectGraphTC0001.bat -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/DirectGraphTC0001.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/DirectGraphTC0001.sh -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/DirectGraphTC0002.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/DirectGraphTC0002.bat -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/DirectGraphTC0002.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/DirectGraphTC0002.sh -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/DirectGraphTC0003.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/DirectGraphTC0003.bat -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/DirectGraphTC0003.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/DirectGraphTC0003.sh -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/DirectGraphTC0004.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/DirectGraphTC0004.bat -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/DirectGraphTC0004.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/DirectGraphTC0004.sh -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/DirectGraphTC0005.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/DirectGraphTC0005.bat -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/DirectGraphTC0005.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/DirectGraphTC0005.sh -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/DirectGraphTC0006.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/DirectGraphTC0006.bat -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/DirectGraphTC0006.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/DirectGraphTC0006.sh -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/DirectGraphTC0007.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/DirectGraphTC0007.bat -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/DirectGraphTC0007.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/DirectGraphTC0007.sh -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/DirectGraphTC0008.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/DirectGraphTC0008.bat -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/DirectGraphTC0008.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/DirectGraphTC0008.sh -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/DirectGraphTC0009.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/DirectGraphTC0009.bat -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/DirectGraphTC0009.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/DirectGraphTC0009.sh -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/DirectGraphTC0010.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/DirectGraphTC0010.bat -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/DirectGraphTC0010.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/DirectGraphTC0010.sh -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/DirectGraphTC0011.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/DirectGraphTC0011.bat -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/DirectGraphTC0011.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/DirectGraphTC0011.sh -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/DirectGraphTC0011b.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/DirectGraphTC0011b.sh -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/DirectGraphTC0012.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/DirectGraphTC0012.bat -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/DirectGraphTC0012.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/DirectGraphTC0012.sh -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/DirectGraphTC0013.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/DirectGraphTC0013.bat -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/DirectGraphTC0013.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/DirectGraphTC0013.sh -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/DirectGraphTC0014.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/DirectGraphTC0014.bat -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/DirectGraphTC0014.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/DirectGraphTC0014.sh -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/DirectGraphTC0015.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/DirectGraphTC0015.bat -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/DirectGraphTC0015.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/DirectGraphTC0015.sh -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/DirectGraphTC0016.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/DirectGraphTC0016.bat -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/DirectGraphTC0016.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/DirectGraphTC0016.sh -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/DirectGraphTC0017.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/DirectGraphTC0017.sh -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/DirectGraphTC0018.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/DirectGraphTC0018.bat -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/DirectGraphTC0018.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/DirectGraphTC0018.sh -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/DirectGraphTC0019.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/DirectGraphTC0019.bat -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/DirectGraphTC0019.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/DirectGraphTC0019.sh -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/DirectGraphTC0020.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/DirectGraphTC0020.bat -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/DirectGraphTC0020.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/DirectGraphTC0020.sh -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/R2RMLTC0001a.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/R2RMLTC0001a.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/R2RMLTC0001b.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/R2RMLTC0001b.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/R2RMLTC0002a.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/R2RMLTC0002a.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/R2RMLTC0002b.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/R2RMLTC0002b.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/R2RMLTC0002c.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/R2RMLTC0002c.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/R2RMLTC0002d.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/R2RMLTC0002d.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/R2RMLTC0002e.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/R2RMLTC0002e.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/R2RMLTC0002f.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/R2RMLTC0002f.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/R2RMLTC0002g.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/R2RMLTC0002g.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/R2RMLTC0002h.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/R2RMLTC0002h.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/R2RMLTC0002i.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/R2RMLTC0002i.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/R2RMLTC0002j.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/R2RMLTC0002j.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/R2RMLTC0003a.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/R2RMLTC0003a.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/R2RMLTC0003b.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/R2RMLTC0003b.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/R2RMLTC0003c.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/R2RMLTC0003c.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/R2RMLTC0004a.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/R2RMLTC0004a.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/R2RMLTC0004b.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/R2RMLTC0004b.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/R2RMLTC0005a.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/R2RMLTC0005a.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/R2RMLTC0005b.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/R2RMLTC0005b.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/R2RMLTC0006a.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/R2RMLTC0006a.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/R2RMLTC0007a.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/R2RMLTC0007a.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/R2RMLTC0007b.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/R2RMLTC0007b.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/R2RMLTC0007c.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/R2RMLTC0007c.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/R2RMLTC0007d.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/R2RMLTC0007d.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/R2RMLTC0007e.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/R2RMLTC0007e.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/R2RMLTC0007f.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/R2RMLTC0007f.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/R2RMLTC0007g.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/R2RMLTC0007g.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/R2RMLTC0007h.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/R2RMLTC0007h.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/R2RMLTC0007i.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/R2RMLTC0007i.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/R2RMLTC0008a.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/R2RMLTC0008a.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/R2RMLTC0008b.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/R2RMLTC0008b.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/R2RMLTC0008c.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/R2RMLTC0008c.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/R2RMLTC0009a.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/R2RMLTC0009a.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/R2RMLTC0009b.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/R2RMLTC0009b.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/R2RMLTC0009c.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/R2RMLTC0009c.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/R2RMLTC0009d.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/R2RMLTC0009d.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/R2RMLTC0010a.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/R2RMLTC0010a.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/R2RMLTC0010b.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/R2RMLTC0010b.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/R2RMLTC0010c.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/R2RMLTC0010c.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/R2RMLTC0011a.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/R2RMLTC0011a.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/R2RMLTC0011b.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/R2RMLTC0011b.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/R2RMLTC0012a.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/R2RMLTC0012a.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/R2RMLTC0012b.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/R2RMLTC0012b.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/R2RMLTC0012c.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/R2RMLTC0012c.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/R2RMLTC0012d.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/R2RMLTC0012d.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/R2RMLTC0012e.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/R2RMLTC0012e.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/R2RMLTC0013a.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/R2RMLTC0013a.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/R2RMLTC0014a.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/R2RMLTC0014a.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/R2RMLTC0014b.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/R2RMLTC0014b.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/R2RMLTC0014c.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/R2RMLTC0014c.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/R2RMLTC0014d.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/R2RMLTC0014d.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/R2RMLTC0015a.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/R2RMLTC0015a.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/R2RMLTC0015b.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/R2RMLTC0015b.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/R2RMLTC0016a.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/R2RMLTC0016a.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/R2RMLTC0016b.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/R2RMLTC0016b.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/R2RMLTC0016c.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/R2RMLTC0016c.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/R2RMLTC0016d.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/R2RMLTC0016d.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/R2RMLTC0016e.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/R2RMLTC0016e.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/R2RMLTC0018a.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/R2RMLTC0018a.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/R2RMLTC0019a.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/R2RMLTC0019a.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/R2RMLTC0019b.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/R2RMLTC0019b.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/R2RMLTC0020a.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/R2RMLTC0020a.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/R2RMLTC0020b.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/R2RMLTC0020b.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/d011b.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/d011b.sql -------------------------------------------------------------------------------- /morph-examples/testcases-mysql/d017-mappings.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-mysql/d017-mappings.ttl -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/D000-1table1column0rows/mapped.nq: -------------------------------------------------------------------------------- 1 | # empty database 2 | -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/D002-1table2columns1row/mappedb-morph.nq: -------------------------------------------------------------------------------- 1 | _:students10 "Venus" . 2 | -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/D002-1table2columns1row/mappedb.nq: -------------------------------------------------------------------------------- 1 | _:students10 "Venus" . 2 | -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/D002-1table2columns1row/mappedc-morph.nq: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/D002-1table2columns1row/mappedd-morph.nq: -------------------------------------------------------------------------------- 1 | _:Student10 "Venus" . 2 | -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/D002-1table2columns1row/mappedd.nq: -------------------------------------------------------------------------------- 1 | _:Student10 "Venus" . -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/D002-1table2columns1row/mappede-morph.nq: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/D002-1table2columns1row/mappedg-morph.nq: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/D002-1table2columns1row/mappedh-morph.nq: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/D009-2tables1primarykey1foreignkey/mappedc-morph.nq: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/D009-2tables1primarykey1foreignkey/mappedd-morph.nq: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/D011-M2MRelations/create.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/D011-M2MRelations/create.sql -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/D011-M2MRelations/d011.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/D011-M2MRelations/d011.sql -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/D011-M2MRelations/manifest.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/D011-M2MRelations/manifest.ttl -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/D011-M2MRelations/mappeda.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/D011-M2MRelations/mappeda.nq -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/D011-M2MRelations/mappedb.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/D011-M2MRelations/mappedb.nq -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/D011-M2MRelations/r2rmla.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/D011-M2MRelations/r2rmla.ttl -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/D011-M2MRelations/r2rmlb.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/D011-M2MRelations/r2rmlb.ttl -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/D014-3tables1primarykey1foreignkey/mappeda-morph.nq: -------------------------------------------------------------------------------- 1 | _:Department10 "NEW YORK" . 2 | -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/D014-3tables1primarykey1foreignkey/mappeda.nq: -------------------------------------------------------------------------------- 1 | _:Department10 "NEW YORK" . 2 | -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/D014-3tables1primarykey1foreignkey/mappedb-morph.nq: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/D014-3tables1primarykey1foreignkey/mappedc-morph.nq: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/D016-1table1primarykey10columns3rowsSQLdatatypes/mappeda-morph.nq: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/D016-1table1primarykey10columns3rowsSQLdatatypes/mappedb-morph.nq: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/D016-1table1primarykey10columns3rowsSQLdatatypes/mappedc-morph.nq: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/D016-1table1primarykey10columns3rowsSQLdatatypes/mappedd-morph.nq: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/D016-1table1primarykey10columns3rowsSQLdatatypes/mappede-morph.nq: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/DirectGraphTC0000.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/DirectGraphTC0000.bat -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/DirectGraphTC0000.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/DirectGraphTC0000.sh -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/DirectGraphTC0001.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/DirectGraphTC0001.bat -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/DirectGraphTC0001.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/DirectGraphTC0001.sh -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/DirectGraphTC0002.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/DirectGraphTC0002.bat -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/DirectGraphTC0002.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/DirectGraphTC0002.sh -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/DirectGraphTC0003.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/DirectGraphTC0003.bat -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/DirectGraphTC0003.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/DirectGraphTC0003.sh -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/DirectGraphTC0004.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/DirectGraphTC0004.bat -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/DirectGraphTC0004.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/DirectGraphTC0004.sh -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/DirectGraphTC0005.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/DirectGraphTC0005.bat -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/DirectGraphTC0005.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/DirectGraphTC0005.sh -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/DirectGraphTC0006.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/DirectGraphTC0006.bat -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/DirectGraphTC0006.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/DirectGraphTC0006.sh -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/DirectGraphTC0007.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/DirectGraphTC0007.bat -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/DirectGraphTC0007.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/DirectGraphTC0007.sh -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/DirectGraphTC0008.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/DirectGraphTC0008.bat -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/DirectGraphTC0008.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/DirectGraphTC0008.sh -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/DirectGraphTC0009.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/DirectGraphTC0009.bat -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/DirectGraphTC0009.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/DirectGraphTC0009.sh -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/DirectGraphTC0010.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/DirectGraphTC0010.bat -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/DirectGraphTC0010.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/DirectGraphTC0010.sh -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/DirectGraphTC0011.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/DirectGraphTC0011.bat -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/DirectGraphTC0011.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/DirectGraphTC0011.sh -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/DirectGraphTC0012.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/DirectGraphTC0012.bat -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/DirectGraphTC0012.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/DirectGraphTC0012.sh -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/DirectGraphTC0013.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/DirectGraphTC0013.bat -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/DirectGraphTC0013.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/DirectGraphTC0013.sh -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/DirectGraphTC0014.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/DirectGraphTC0014.bat -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/DirectGraphTC0014.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/DirectGraphTC0014.sh -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/DirectGraphTC0015.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/DirectGraphTC0015.bat -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/DirectGraphTC0015.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/DirectGraphTC0015.sh -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/DirectGraphTC0016.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/DirectGraphTC0016.bat -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/DirectGraphTC0016.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/DirectGraphTC0016.sh -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/DirectGraphTC0017.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/DirectGraphTC0017.sh -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/DirectGraphTC0018.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/DirectGraphTC0018.bat -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/DirectGraphTC0018.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/DirectGraphTC0018.sh -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/DirectGraphTC0019.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/DirectGraphTC0019.bat -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/DirectGraphTC0019.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/DirectGraphTC0019.sh -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/DirectGraphTC0020.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/DirectGraphTC0020.bat -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/DirectGraphTC0020.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/DirectGraphTC0020.sh -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/R2RMLTC0001a.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/R2RMLTC0001a.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/R2RMLTC0001b.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/R2RMLTC0001b.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/R2RMLTC0002a.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/R2RMLTC0002a.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/R2RMLTC0002b.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/R2RMLTC0002b.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/R2RMLTC0002c.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/R2RMLTC0002c.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/R2RMLTC0002d.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/R2RMLTC0002d.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/R2RMLTC0002e.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/R2RMLTC0002e.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/R2RMLTC0002f.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/R2RMLTC0002f.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/R2RMLTC0002g.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/R2RMLTC0002g.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/R2RMLTC0002h.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/R2RMLTC0002h.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/R2RMLTC0002i.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/R2RMLTC0002i.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/R2RMLTC0002j.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/R2RMLTC0002j.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/R2RMLTC0003a.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/R2RMLTC0003a.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/R2RMLTC0003b.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/R2RMLTC0003b.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/R2RMLTC0003c.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/R2RMLTC0003c.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/R2RMLTC0004a.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/R2RMLTC0004a.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/R2RMLTC0004b.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/R2RMLTC0004b.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/R2RMLTC0005a.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/R2RMLTC0005a.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/R2RMLTC0005b.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/R2RMLTC0005b.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/R2RMLTC0006a.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/R2RMLTC0006a.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/R2RMLTC0007a.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/R2RMLTC0007a.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/R2RMLTC0007b.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/R2RMLTC0007b.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/R2RMLTC0007c.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/R2RMLTC0007c.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/R2RMLTC0007d.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/R2RMLTC0007d.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/R2RMLTC0007e.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/R2RMLTC0007e.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/R2RMLTC0007f.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/R2RMLTC0007f.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/R2RMLTC0007g.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/R2RMLTC0007g.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/R2RMLTC0007h.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/R2RMLTC0007h.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/R2RMLTC0008a.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/R2RMLTC0008a.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/R2RMLTC0008b.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/R2RMLTC0008b.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/R2RMLTC0008c.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/R2RMLTC0008c.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/R2RMLTC0009a.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/R2RMLTC0009a.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/R2RMLTC0009b.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/R2RMLTC0009b.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/R2RMLTC0009c.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/R2RMLTC0009c.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/R2RMLTC0009d.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/R2RMLTC0009d.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/R2RMLTC0010a.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/R2RMLTC0010a.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/R2RMLTC0010b.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/R2RMLTC0010b.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/R2RMLTC0010c.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/R2RMLTC0010c.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/R2RMLTC0011a.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/R2RMLTC0011a.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/R2RMLTC0011b.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/R2RMLTC0011b.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/R2RMLTC0012a.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/R2RMLTC0012a.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/R2RMLTC0012b.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/R2RMLTC0012b.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/R2RMLTC0012c.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/R2RMLTC0012c.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/R2RMLTC0012d.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/R2RMLTC0012d.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/R2RMLTC0012e.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/R2RMLTC0012e.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/R2RMLTC0013a.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/R2RMLTC0013a.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/R2RMLTC0014a.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/R2RMLTC0014a.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/R2RMLTC0014b.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/R2RMLTC0014b.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/R2RMLTC0014c.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/R2RMLTC0014c.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/R2RMLTC0014d.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/R2RMLTC0014d.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/R2RMLTC0015a.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/R2RMLTC0015a.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/R2RMLTC0015b.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/R2RMLTC0015b.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/R2RMLTC0016a.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/R2RMLTC0016a.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/R2RMLTC0016b.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/R2RMLTC0016b.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/R2RMLTC0016c.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/R2RMLTC0016c.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/R2RMLTC0016d.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/R2RMLTC0016d.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/R2RMLTC0016e.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/R2RMLTC0016e.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/R2RMLTC0018a.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/R2RMLTC0018a.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/R2RMLTC0019a.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/R2RMLTC0019a.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/R2RMLTC0019b.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/R2RMLTC0019b.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/R2RMLTC0020a.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/R2RMLTC0020a.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/R2RMLTC0020b.morph.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/R2RMLTC0020b.morph.properties -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/d011b.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/d011b.sql -------------------------------------------------------------------------------- /morph-examples/testcases-oracle/d017-mappings.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-oracle/d017-mappings.ttl -------------------------------------------------------------------------------- /morph-examples/testcases-postgresql/D000-1table1column0rows/mapped-morph.nq: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /morph-examples/testcases-postgresql/D000-1table1column0rows/mapped.nq: -------------------------------------------------------------------------------- 1 | # empty database 2 | -------------------------------------------------------------------------------- /morph-examples/testcases-postgresql/D002-1table2columns1row/mappedb-morph.nq: -------------------------------------------------------------------------------- 1 | _:students10 "Venus" . 2 | -------------------------------------------------------------------------------- /morph-examples/testcases-postgresql/D002-1table2columns1row/mappedb.nq: -------------------------------------------------------------------------------- 1 | _:students10 "Venus" . 2 | -------------------------------------------------------------------------------- /morph-examples/testcases-postgresql/D002-1table2columns1row/mappedc-morph.nq: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /morph-examples/testcases-postgresql/D002-1table2columns1row/mappedd-morph.nq: -------------------------------------------------------------------------------- 1 | _:Student10 "Venus" . 2 | -------------------------------------------------------------------------------- /morph-examples/testcases-postgresql/D002-1table2columns1row/mappedd.nq: -------------------------------------------------------------------------------- 1 | _:Student10 "Venus" . -------------------------------------------------------------------------------- /morph-examples/testcases-postgresql/D002-1table2columns1row/mappede-morph.nq: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /morph-examples/testcases-postgresql/D002-1table2columns1row/mappedg-morph.nq: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /morph-examples/testcases-postgresql/D002-1table2columns1row/mappedh-morph.nq: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /morph-examples/testcases-postgresql/D009-2tables1primarykey1foreignkey/mappedc-morph.nq: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /morph-examples/testcases-postgresql/D009-2tables1primarykey1foreignkey/mappedd-morph.nq: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /morph-examples/testcases-postgresql/D011-M2MRelations/d011.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-postgresql/D011-M2MRelations/d011.sql -------------------------------------------------------------------------------- /morph-examples/testcases-postgresql/D014-3tables1primarykey1foreignkey/mappeda-morph.nq: -------------------------------------------------------------------------------- 1 | _:Department10 "NEW YORK" . 2 | -------------------------------------------------------------------------------- /morph-examples/testcases-postgresql/D014-3tables1primarykey1foreignkey/mappeda.nq: -------------------------------------------------------------------------------- 1 | _:Department10 "NEW YORK" . 2 | -------------------------------------------------------------------------------- /morph-examples/testcases-postgresql/D014-3tables1primarykey1foreignkey/mappedd-morph.nq: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /morph-examples/testcases-postgresql/DirectGraphTC0000.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-postgresql/DirectGraphTC0000.bat -------------------------------------------------------------------------------- /morph-examples/testcases-postgresql/DirectGraphTC0000.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-postgresql/DirectGraphTC0000.sh -------------------------------------------------------------------------------- /morph-examples/testcases-postgresql/DirectGraphTC0001.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-postgresql/DirectGraphTC0001.bat -------------------------------------------------------------------------------- /morph-examples/testcases-postgresql/DirectGraphTC0001.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-postgresql/DirectGraphTC0001.sh -------------------------------------------------------------------------------- /morph-examples/testcases-postgresql/DirectGraphTC0002.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-postgresql/DirectGraphTC0002.bat -------------------------------------------------------------------------------- /morph-examples/testcases-postgresql/DirectGraphTC0002.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-postgresql/DirectGraphTC0002.sh -------------------------------------------------------------------------------- /morph-examples/testcases-postgresql/DirectGraphTC0003.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-postgresql/DirectGraphTC0003.bat -------------------------------------------------------------------------------- /morph-examples/testcases-postgresql/DirectGraphTC0003.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-postgresql/DirectGraphTC0003.sh -------------------------------------------------------------------------------- /morph-examples/testcases-postgresql/DirectGraphTC0004.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-postgresql/DirectGraphTC0004.bat -------------------------------------------------------------------------------- /morph-examples/testcases-postgresql/DirectGraphTC0004.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-postgresql/DirectGraphTC0004.sh -------------------------------------------------------------------------------- /morph-examples/testcases-postgresql/DirectGraphTC0005.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-postgresql/DirectGraphTC0005.bat -------------------------------------------------------------------------------- /morph-examples/testcases-postgresql/DirectGraphTC0005.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-postgresql/DirectGraphTC0005.sh -------------------------------------------------------------------------------- /morph-examples/testcases-postgresql/DirectGraphTC0006.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-postgresql/DirectGraphTC0006.bat -------------------------------------------------------------------------------- /morph-examples/testcases-postgresql/DirectGraphTC0006.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-postgresql/DirectGraphTC0006.sh -------------------------------------------------------------------------------- /morph-examples/testcases-postgresql/DirectGraphTC0007.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-postgresql/DirectGraphTC0007.bat -------------------------------------------------------------------------------- /morph-examples/testcases-postgresql/DirectGraphTC0007.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-postgresql/DirectGraphTC0007.sh -------------------------------------------------------------------------------- /morph-examples/testcases-postgresql/DirectGraphTC0008.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-postgresql/DirectGraphTC0008.bat -------------------------------------------------------------------------------- /morph-examples/testcases-postgresql/DirectGraphTC0008.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-postgresql/DirectGraphTC0008.sh -------------------------------------------------------------------------------- /morph-examples/testcases-postgresql/DirectGraphTC0009.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-postgresql/DirectGraphTC0009.bat -------------------------------------------------------------------------------- /morph-examples/testcases-postgresql/DirectGraphTC0009.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-postgresql/DirectGraphTC0009.sh -------------------------------------------------------------------------------- /morph-examples/testcases-postgresql/DirectGraphTC0010.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-postgresql/DirectGraphTC0010.bat -------------------------------------------------------------------------------- /morph-examples/testcases-postgresql/DirectGraphTC0010.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-postgresql/DirectGraphTC0010.sh -------------------------------------------------------------------------------- /morph-examples/testcases-postgresql/DirectGraphTC0011.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-postgresql/DirectGraphTC0011.bat -------------------------------------------------------------------------------- /morph-examples/testcases-postgresql/DirectGraphTC0011.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-postgresql/DirectGraphTC0011.sh -------------------------------------------------------------------------------- /morph-examples/testcases-postgresql/DirectGraphTC0012.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-postgresql/DirectGraphTC0012.bat -------------------------------------------------------------------------------- /morph-examples/testcases-postgresql/DirectGraphTC0012.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-postgresql/DirectGraphTC0012.sh -------------------------------------------------------------------------------- /morph-examples/testcases-postgresql/DirectGraphTC0013.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-postgresql/DirectGraphTC0013.bat -------------------------------------------------------------------------------- /morph-examples/testcases-postgresql/DirectGraphTC0013.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-postgresql/DirectGraphTC0013.sh -------------------------------------------------------------------------------- /morph-examples/testcases-postgresql/DirectGraphTC0014.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-postgresql/DirectGraphTC0014.bat -------------------------------------------------------------------------------- /morph-examples/testcases-postgresql/DirectGraphTC0014.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-postgresql/DirectGraphTC0014.sh -------------------------------------------------------------------------------- /morph-examples/testcases-postgresql/DirectGraphTC0015.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-postgresql/DirectGraphTC0015.bat -------------------------------------------------------------------------------- /morph-examples/testcases-postgresql/DirectGraphTC0015.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-postgresql/DirectGraphTC0015.sh -------------------------------------------------------------------------------- /morph-examples/testcases-postgresql/DirectGraphTC0016.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-postgresql/DirectGraphTC0016.bat -------------------------------------------------------------------------------- /morph-examples/testcases-postgresql/DirectGraphTC0016.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-postgresql/DirectGraphTC0016.sh -------------------------------------------------------------------------------- /morph-examples/testcases-postgresql/DirectGraphTC0017.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-postgresql/DirectGraphTC0017.sh -------------------------------------------------------------------------------- /morph-examples/testcases-postgresql/DirectGraphTC0018.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-postgresql/DirectGraphTC0018.bat -------------------------------------------------------------------------------- /morph-examples/testcases-postgresql/DirectGraphTC0018.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-postgresql/DirectGraphTC0018.sh -------------------------------------------------------------------------------- /morph-examples/testcases-postgresql/DirectGraphTC0019.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-postgresql/DirectGraphTC0019.bat -------------------------------------------------------------------------------- /morph-examples/testcases-postgresql/DirectGraphTC0019.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-postgresql/DirectGraphTC0019.sh -------------------------------------------------------------------------------- /morph-examples/testcases-postgresql/DirectGraphTC0020.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-postgresql/DirectGraphTC0020.bat -------------------------------------------------------------------------------- /morph-examples/testcases-postgresql/DirectGraphTC0020.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-postgresql/DirectGraphTC0020.sh -------------------------------------------------------------------------------- /morph-examples/testcases-postgresql/d011b.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-postgresql/d011b.sql -------------------------------------------------------------------------------- /morph-examples/testcases-postgresql/d017-mappings.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-examples/testcases-postgresql/d017-mappings.ttl -------------------------------------------------------------------------------- /morph-r2rml-rdb-querytranslator/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-r2rml-rdb-querytranslator/pom.xml -------------------------------------------------------------------------------- /morph-r2rml-rdb-querytranslator/src/test/scala/dummy.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /morph-r2rml-rdb/lib/ojdbc6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-r2rml-rdb/lib/ojdbc6.jar -------------------------------------------------------------------------------- /morph-r2rml-rdb/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-r2rml-rdb/pom.xml -------------------------------------------------------------------------------- /morph-r2rml-rdb/src/test/dummy.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /morph-r2rml/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-r2rml/pom.xml -------------------------------------------------------------------------------- /morph-rdb-dist/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-rdb-dist/pom.xml -------------------------------------------------------------------------------- /morph-rdb-dist/src/main/assembly/all-jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-rdb-dist/src/main/assembly/all-jar.xml -------------------------------------------------------------------------------- /morph-rdb.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/morph-rdb.jar -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/pom.xml -------------------------------------------------------------------------------- /run-docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/morph-rdb/HEAD/run-docker.sh --------------------------------------------------------------------------------