-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
380 changed files
with
4,496 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
CREATE TABLE Student ( | ||
Name varchar(50) | ||
); |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
CREATE TABLE Student ( | ||
Name varchar(50) | ||
); | ||
INSERT INTO Student VALUES ('Venus') |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
CREATE TABLE `Student` ( | ||
`ID` INTEGER, | ||
`Name` VARCHAR(15) | ||
); | ||
INSERT INTO `Student` (`ID`, `Name`) VALUES(10,'Venus'); |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
CREATE TABLE Student ( | ||
ID INTEGER, | ||
FirstName VARCHAR(50), | ||
LastName VARCHAR(50) | ||
); | ||
INSERT INTO Student (ID, FirstName, LastName) VALUES (10,'Venus', 'Williams'); |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
CREATE TABLE Student_Sport( | ||
Student varchar(50), | ||
Sport varchar(50) | ||
); | ||
INSERT INTO Student_Sport (Student,Sport) VALUES ('Venus', 'Tennis'); |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
7 changes: 7 additions & 0 deletions
7
src/test/resources/mysql/D005-1table3columns3rows2duplicates/create.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
CREATE TABLE IOUs ( | ||
fname VARCHAR(20), | ||
lname VARCHAR(20), | ||
amount FLOAT); | ||
INSERT INTO IOUs (fname, lname, amount) VALUES ('Bob', 'Smith', 30); | ||
INSERT INTO IOUs (fname, lname, amount) VALUES ('Sue', 'Jones', 20); | ||
INSERT INTO IOUs (fname, lname, amount) VALUES ('Bob', 'Smith', 30); |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 4 additions & 0 deletions
4
src/test/resources/mysql/D006-1table1primarykey1column1row/create.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
CREATE TABLE Student ( | ||
Name varchar(50) PRIMARY KEY | ||
); | ||
INSERT INTO Student (Name) VALUES ('Venus'); |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
6 changes: 6 additions & 0 deletions
6
src/test/resources/mysql/D007-1table1primarykey2columns1row/create.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
CREATE TABLE Student ( | ||
ID integer, | ||
Name varchar(50), | ||
PRIMARY KEY (ID) | ||
); | ||
INSERT INTO Student (ID, Name) VALUES(10,'Venus'); |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
7 changes: 7 additions & 0 deletions
7
src/test/resources/mysql/D008-1table1compositeprimarykey3columns1row/create.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
CREATE TABLE Student ( | ||
ID integer, | ||
Name varchar(50), | ||
Sport varchar (50), | ||
PRIMARY KEY (ID,Name) | ||
); | ||
INSERT INTO Student (ID, Name,Sport) VALUES(10,'Venus Williams','Tennis'); |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
18 changes: 18 additions & 0 deletions
18
src/test/resources/mysql/D009-2tables1primarykey1foreignkey/create.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
CREATE TABLE Sport ( | ||
ID integer, | ||
Name varchar (50), | ||
PRIMARY KEY (ID) | ||
); | ||
|
||
CREATE TABLE Student ( | ||
ID integer, | ||
Name varchar(50), | ||
Sport integer, | ||
PRIMARY KEY (ID), | ||
FOREIGN KEY(Sport) REFERENCES Sport(ID) | ||
); | ||
|
||
INSERT INTO Sport (ID, Name) VALUES (100,'Tennis'); | ||
INSERT INTO Student (ID, Name, Sport) VALUES (10,'Venus Williams', 100); | ||
INSERT INTO Student (ID, Name, Sport) VALUES (20,'Demi Moore', NULL); | ||
|
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
9 changes: 9 additions & 0 deletions
9
src/test/resources/mysql/D010-1table1primarykey3colums3rows/create.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
CREATE TABLE `Country Info` ( | ||
`Country Code` INTEGER PRIMARY KEY, | ||
Name VARCHAR(100), | ||
`ISO 3166` VARCHAR(10) | ||
); | ||
|
||
INSERT INTO `Country Info` (`Country Code`, Name, `ISO 3166`) VALUES (1, 'Bolivia, Plurinational State of', 'BO'); | ||
INSERT INTO `Country Info` (`Country Code`, Name, `ISO 3166`) VALUES (2, 'Ireland', 'IE'); | ||
INSERT INTO `Country Info` (`Country Code`, Name, `ISO 3166`) VALUES (3, 'Saint Martin (French part)', 'MF'); |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
CREATE TABLE Student ( | ||
ID integer PRIMARY KEY, | ||
FirstName varchar(50), | ||
LastName varchar(50) | ||
); | ||
CREATE TABLE Sport ( | ||
ID integer PRIMARY KEY, | ||
Description varchar(50) | ||
); | ||
CREATE TABLE Student_Sport ( | ||
ID_Student integer, | ||
ID_Sport integer, | ||
PRIMARY KEY (ID_Student,ID_Sport), | ||
FOREIGN KEY (ID_Student) REFERENCES Student(ID), | ||
FOREIGN KEY (ID_Sport) REFERENCES Sport(ID) | ||
); | ||
|
||
INSERT INTO Student (ID,FirstName,LastName) VALUES (10,'Venus', 'Williams'); | ||
INSERT INTO Student (ID,FirstName,LastName) VALUES (11,'Fernando', 'Alonso'); | ||
INSERT INTO Student (ID,FirstName,LastName) VALUES (12,'David', 'Villa'); | ||
|
||
INSERT INTO Sport (ID, Description) VALUES (110,'Tennis'); | ||
INSERT INTO Sport (ID, Description) VALUES (111,'Football'); | ||
INSERT INTO Sport (ID, Description) VALUES (112,'Formula1'); | ||
|
||
INSERT INTO Student_Sport (ID_Student, ID_Sport) VALUES (10,110); | ||
INSERT INTO Student_Sport (ID_Student, ID_Sport) VALUES (11,111); | ||
INSERT INTO Student_Sport (ID_Student, ID_Sport) VALUES (11,112); | ||
INSERT INTO Student_Sport (ID_Student, ID_Sport) VALUES (12,111); |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
@prefix rr: <http://www.w3.org/ns/r2rml#> . | ||
@prefix foaf: <http://xmlns.com/foaf/0.1/> . | ||
@prefix ex: <http://example.com/> . | ||
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . | ||
@base <http://example.com/base/> . | ||
|
||
<TriplesMap1> | ||
a rr:TriplesMap; | ||
|
||
rr:logicalTable [ rr:sqlQuery """ | ||
SELECT Student.ID as ID, | ||
Student.FirstName as FirstName, | ||
Student.LastName as LastName, | ||
Sport.Description as Description, | ||
Sport.ID as Sport_ID | ||
FROM Student,Sport,Student_Sport | ||
WHERE Student.ID = Student_Sport.ID_Student | ||
AND Sport.ID = Student_Sport.ID_Sport; | ||
"""; ]; | ||
|
||
rr:subjectMap [ rr:template "http://example.com/{ID}/{FirstName};{LastName}" ]; | ||
|
||
rr:predicateObjectMap | ||
[ | ||
rr:predicate ex:id ; | ||
rr:objectMap [ rr:column "ID"; ] | ||
]; | ||
|
||
rr:predicateObjectMap | ||
[ | ||
rr:predicate ex:firstName ; | ||
rr:objectMap [ rr:column "FirstName" ] | ||
]; | ||
|
||
rr:predicateObjectMap | ||
[ | ||
rr:predicate ex:lastName ; | ||
rr:objectMap [ rr:column "LastName" ] | ||
]; | ||
|
||
rr:predicateObjectMap | ||
[ | ||
rr:predicate ex:plays ; | ||
rr:objectMap [ rr:template "http://example.com/{Sport_ID}/{Description}" ] | ||
] | ||
. | ||
|
||
<TriplesMap2> | ||
a rr:TriplesMap; | ||
|
||
rr:logicalTable [ rr:tableName "\"Sport\"" ]; | ||
|
||
rr:subjectMap [ rr:template "http://example.com/{\"ID\"}/{\"Description\"}"; ]; | ||
|
||
rr:predicateObjectMap | ||
[ | ||
rr:predicate ex:id ; | ||
rr:objectMap [ rr:column "\"ID\""; ] | ||
]; | ||
|
||
rr:predicateObjectMap | ||
[ | ||
rr:predicate ex:description ; | ||
rr:objectMap [ rr:column "\"Description\"" ] | ||
] | ||
. |
File renamed without changes.
17 changes: 17 additions & 0 deletions
17
src/test/resources/mysql/D012-2tables2duplicates0nulls/create.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
CREATE TABLE IOUs ( | ||
fname VARCHAR(20), | ||
lname VARCHAR(20), | ||
amount FLOAT); | ||
|
||
CREATE TABLE Lives ( | ||
fname VARCHAR(20), | ||
lname VARCHAR(20), | ||
city VARCHAR(20)); | ||
|
||
INSERT INTO IOUs (fname, lname, amount) VALUES ('Bob', 'Smith', 30); | ||
INSERT INTO IOUs (fname, lname, amount) VALUES ('Sue', 'Jones', 20); | ||
INSERT INTO IOUs (fname, lname, amount) VALUES ('Bob', 'Smith', 30); | ||
|
||
INSERT INTO Lives (fname, lname, city) VALUES ('Bob', 'Smith', 'London'); | ||
INSERT INTO Lives (fname, lname, city) VALUES ('Sue', 'Jones', 'Madrid'); | ||
INSERT INTO Lives (fname, lname, city) VALUES ('Bob', 'Smith', 'London'); |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
8 changes: 8 additions & 0 deletions
8
src/test/resources/mysql/D013-1table1primarykey3columns2rows1nullvalue/create.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
CREATE TABLE Person ( | ||
ID integer, | ||
Name varchar(50), | ||
DateOfBirth varchar(50), | ||
PRIMARY KEY (ID) | ||
); | ||
INSERT INTO Person (ID, Name, DateOfBirth) VALUES (1,'Alice', NULL); | ||
INSERT INTO Person (ID, Name, DateOfBirth) VALUES (2,'Bob', 'September, 2010'); |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
22 changes: 22 additions & 0 deletions
22
src/test/resources/mysql/D014-3tables1primarykey1foreignkey/create.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
CREATE TABLE DEPT ( | ||
deptno INTEGER UNIQUE, | ||
dname VARCHAR(30), | ||
loc VARCHAR(100)); | ||
|
||
CREATE TABLE EMP ( | ||
empno INTEGER PRIMARY KEY, | ||
ename VARCHAR(100), | ||
job VARCHAR(30), | ||
deptno INTEGER REFERENCES DEPT (deptno), | ||
etype VARCHAR(30)); | ||
|
||
CREATE TABLE LIKES ( | ||
id INTEGER, | ||
likeType VARCHAR(30), | ||
likedObj VARCHAR(100)); | ||
|
||
INSERT INTO DEPT (deptno, dname, loc) VALUES (10, 'APPSERVER', 'NEW YORK'); | ||
INSERT INTO EMP (empno, ename, job, deptno, etype ) VALUES (7369, 'SMITH', 'CLERK', 10, 'PART_TIME'); | ||
|
||
INSERT INTO LIKES (id, likeType, likedObj) VALUES (7369, 'Playing', 'Soccer'); | ||
INSERT INTO LIKES (id, likeType, likedObj) VALUES (7369, 'Watching', 'Basketball'); |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
11 changes: 11 additions & 0 deletions
11
src/test/resources/mysql/D015-1table3columns1composityeprimarykey3rows2languages/create.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
CREATE TABLE Country ( | ||
Code VARCHAR(2), | ||
Name VARCHAR(100), | ||
Lan VARCHAR(10), | ||
PRIMARY KEY (Code,Lan) | ||
); | ||
INSERT INTO Country (Code, Name, Lan) VALUES ('BO', 'Bolivia, Plurinational State of', 'EN'); | ||
INSERT INTO Country (Code, Name, Lan) VALUES ('BO', 'Estado Plurinacional de Bolivia', 'ES'); | ||
INSERT INTO Country (Code, Name, Lan) VALUES ('IE', 'Ireland', 'EN'); | ||
INSERT INTO Country (Code, Name, Lan) VALUES ('IE', 'Irlanda', 'ES'); | ||
|
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
25 changes: 25 additions & 0 deletions
25
src/test/resources/mysql/D016-1table1primarykey10columns3rowsSQLdatatypes/create.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
CREATE TABLE Patient ( | ||
ID INTEGER, | ||
FirstName VARCHAR(50), | ||
LastName VARCHAR(50), | ||
Sex VARCHAR(6), | ||
Weight REAL, | ||
Height FLOAT, | ||
BirthDate DATE, | ||
EntranceDate TIMESTAMP, | ||
PaidInAdvance BOOLEAN, | ||
Photo VARBINARY(200), | ||
PRIMARY KEY (ID) | ||
); | ||
|
||
INSERT INTO Patient (ID, FirstName,LastName,Sex,Weight,Height,BirthDate,EntranceDate,PaidInAdvance,Photo) | ||
VALUES (10,'Monica','Geller','female',80.25,1.65,'1981-10-10','2009-10-10 12:12:22',FALSE, | ||
X'89504E470D0A1A0A0000000D49484452000000050000000508060000008D6F26E50000001C4944415408D763F9FFFEBFC37F062005C3201284D031F18258CD04000EF535CBD18E0E1F0000000049454E44AE426082'); | ||
|
||
INSERT INTO Patient (ID, FirstName,LastName,Sex,Weight,Height,BirthDate,EntranceDate,PaidInAdvance,Photo) | ||
VALUES (11,'Rachel','Green','female',70.22,1.70,'1982-11-12','2008-11-12 09:45:44',TRUE, | ||
X'89504E470D0A1A0A0000000D49484452000000050000000508060000008D6F26E50000001C4944415408D763F9FFFF3FC37F062005C3201284D031F18258CD04000EF535CBD18E0E1F0000000049454E44AE426082'); | ||
|
||
INSERT INTO Patient (ID, FirstName,LastName,Sex,Weight,Height,BirthDate,EntranceDate,PaidInAdvance,Photo) | ||
VALUES (12,'Chandler','Bing','male',90.31,1.76,'1978-04-06','2007-03-12 02:13:14',TRUE, | ||
X'89504E470D0A1A0A0000000D49484452000000050000000508060000008D6F26E50000001C4944415408D763F9FFFEBFC37F062005C3201284D031F18258CD04000EF535CBD18E0E1F0000000049454E44AE426082'); |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
15 changes: 15 additions & 0 deletions
15
src/test/resources/mysql/D017-I18NnoSpecialChars/create.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
CREATE TABLE 植物 ( | ||
名 VARCHAR(10), | ||
使用部 VARCHAR(10), | ||
条件 VARCHAR(10), | ||
PRIMARY KEY (名, 使用部) | ||
); | ||
INSERT INTO 植物 (名, 使用部, 条件) VALUES ('しそ', '葉', '新鮮な'); | ||
|
||
CREATE TABLE 成分 ( | ||
皿 VARCHAR(10), | ||
植物名 VARCHAR(10), | ||
使用部 VARCHAR(10), | ||
FOREIGN KEY (植物名, 使用部) REFERENCES 植物(名, 使用部) | ||
); | ||
INSERT INTO 成分 (皿, 植物名, 使用部) VALUES ('しそのとまと', 'しそ', '葉'); |
22 changes: 11 additions & 11 deletions
22
...s/D017-I18NnoSpecialChars/directGraph.ttl → ...l/D017-I18NnoSpecialChars/directGraph.ttl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
@base <http://example.com/base/> . | ||
|
||
<植物/名=しそ;使用部=葉> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <植物> . | ||
<植物/名=しそ;使用部=葉> <植物#使用部> "葉" . | ||
<植物/名=しそ;使用部=葉> <植物#名> "しそ" . | ||
<植物/名=しそ;使用部=葉> <植物#条件> "新鮮な" . | ||
_:a <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <成分> . | ||
_:a <成分#使用部> "葉" . | ||
_:a <成分#植物名> "しそ" . | ||
_:a <成分#ref-植物名;使用部> <植物/名=しそ;使用部=葉> . | ||
_:a <成分#皿> "しそのとまと" . | ||
@base <http://example.com/base/> . | ||
|
||
<植物/名=しそ;使用部=葉> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <植物> . | ||
<植物/名=しそ;使用部=葉> <植物#使用部> "葉" . | ||
<植物/名=しそ;使用部=葉> <植物#名> "しそ" . | ||
<植物/名=しそ;使用部=葉> <植物#条件> "新鮮な" . | ||
_:a <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <成分> . | ||
_:a <成分#使用部> "葉" . | ||
_:a <成分#植物名> "しそ" . | ||
_:a <成分#ref-植物名;使用部> <植物/名=しそ;使用部=葉> . | ||
_:a <成分#皿> "しそのとまと" . |
File renamed without changes.
7 changes: 7 additions & 0 deletions
7
src/test/resources/mysql/D018-1table1primarykey2columns3rows/create.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
CREATE TABLE Student ( | ||
ID INTEGER, | ||
Name CHAR(15) | ||
); | ||
INSERT INTO Student (ID,Name) VALUES (10,'Venus'); | ||
INSERT INTO Student (ID,Name) VALUES (20,'Fernando'); | ||
INSERT INTO Student (ID,Name) VALUES (30,'David'); |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
8 changes: 8 additions & 0 deletions
8
src/test/resources/mysql/D019-1table1primarykey3columns3rows/create.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
CREATE TABLE Employee ( | ||
ID INTEGER, | ||
FirstName VARCHAR(50), | ||
LastName VARCHAR(50) | ||
); | ||
INSERT INTO Employee (ID,FirstName,LastName) VALUES (10,'http://example.com/ns#Jhon','Smith'); | ||
INSERT INTO Employee (ID,FirstName,LastName) VALUES (20,'Carlos','Mendoza'); | ||
INSERT INTO Employee (ID,FirstName,LastName) VALUES (30,'Juan Daniel','Crespo'); |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
CREATE TABLE Student ( | ||
Name VARCHAR(50) | ||
); | ||
|
||
INSERT INTO Student (Name) VALUES ('http://example.com/company/Alice'); | ||
INSERT INTO Student (Name) VALUES ('Bob'); | ||
INSERT INTO Student (Name) VALUES ('Bob/Charles'); | ||
INSERT INTO Student (Name) VALUES ('path/../Danny'); | ||
INSERT INTO Student (Name) VALUES ('Emily Smith'); |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Oops, something went wrong.