Skip to content

Commit 7c5db60

Browse files
author
Olaf Hartig
committed
extended FIXME comments to refer to the corresponding three bug reports: LinkedDataFragments#23 LinkedDataFragments#24 and LinkedDataFragments#25
1 parent a66e354 commit 7c5db60

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

src/org/linkeddatafragments/datasource/hdt/HdtBasedRequestProcessorForTPFs.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ protected LinkedDataFragment createFragment(
7272
// FIXME: The following algorithm is incorrect for cases in which
7373
// the requested triple pattern contains a specific variable
7474
// multiple times (e.g., ?x foaf:knows ?x ).
75+
// see https://github.com/LinkedDataFragments/Server.Java/issues/23
7576

7677
// look up the result from the HDT datasource)
7778
int subjectId = subject.isVariable() ? 0 : dictionary.getIntID(subject.asTerm().asNode(), TripleComponentRole.SUBJECT);

src/org/linkeddatafragments/datasource/index/IndexRequestProcessorForTPFs.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@ protected LinkedDataFragment createFragment(
8484
// FIXME: The following algorithm is incorrect for cases in which
8585
// the requested triple pattern contains a specific variable
8686
// multiple times (e.g., ?x foaf:knows ?x ).
87+
// see https://github.com/LinkedDataFragments/Server.Java/issues/25
8788

8889
final Resource subject = s.isVariable() ? null
8990
: s.asTerm().asResource();

src/org/linkeddatafragments/datasource/tdb/JenaTDBBasedRequestProcessorForTPFs.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ protected LinkedDataFragment createFragment(
6969
// FIXME: The following algorithm is incorrect for cases in which
7070
// the requested triple pattern contains a specific variable
7171
// multiple times (e.g., ?x foaf:knows ?x ).
72+
// see https://github.com/LinkedDataFragments/Server.Java/issues/24
7273

7374
Model model = tdb.getDefaultModel();
7475
QuerySolutionMap map = new QuerySolutionMap();

0 commit comments

Comments
 (0)