-
Notifications
You must be signed in to change notification settings - Fork 58
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for FROM
and GRAPH
with fixed IRI
#1445
Conversation
This is yet very hacky, and we have to integrate all the other things.
TODO<joka921> integrate and test it.
maybe later.
Figure out the constantness of the result...
correct behavior with SetOfIntervals.
# Conflicts: # src/index/IndexFormatVersion.h # src/index/IndexImpl.cpp # src/index/PatternCreator.cpp # src/index/PatternCreator.h # src/parser/TripleComponent.h
fix the whole stuff....
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #1445 +/- ##
==========================================
- Coverage 92.55% 88.21% -4.35%
==========================================
Files 355 355
Lines 26631 26639 +8
Branches 3575 3583 +8
==========================================
- Hits 24649 23499 -1150
+ Misses 1940 1909 -31
- Partials 42 1231 +1189 ☔ View full report in Codecov by Sentry. |
Signed-off-by: Johannes Kalmbach <[email protected]>
Signed-off-by: Johannes Kalmbach <[email protected]>
# Conflicts: # src/index/CompressedRelation.cpp # src/index/CompressedRelation.h # test/CompressedRelationsTest.cpp
Signed-off-by: Johannes Kalmbach <[email protected]>
Signed-off-by: Johannes Kalmbach <[email protected]>
Signed-off-by: Johannes Kalmbach <[email protected]>
Signed-off-by: Johannes Kalmbach <[email protected]>
Signed-off-by: Johannes Kalmbach <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
First round of reviewing of diff to #1482, looks great already
Check whether the change in SparqlExpressionTypes.h
is necessary
Dito for LiteralExpression.h
Dito for Result.cpp
Dito for Bind.cpp
Signed-off-by: Johannes Kalmbach <[email protected]>
Signed-off-by: Johannes Kalmbach <[email protected]>
Signed-off-by: Johannes Kalmbach <[email protected]>
Signed-off-by: Johannes Kalmbach <[email protected]>
Signed-off-by: Johannes Kalmbach <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks great and complete now, a few minor changes left
Signed-off-by: Johannes Kalmbach <[email protected]>
FROM
and GRAPH
with fixed IRI
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Awesome, another important milestone taken!
Quality Gate passedIssues Measures |
This continues work from #1337 (add a column with the graph name to the index), #1444 (add parser for N-Quads), and #1482 (add graph info to block metadata). Queries with
FROM
and/orGRAPH
with a fixed IRI can now be processed. Processing queries withFROM NAME
orGRAPH
with a variable will be implemented in a future PR.