-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Accidentiall fixed too many formats This reverts commit 0d6977f.
- Loading branch information
Showing
16 changed files
with
488 additions
and
754 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,16 @@ | ||
add_subdirectory(sparqlExpressions) add_library( | ||
SortPerformanceEstimator SortPerformanceEstimator.cpp) | ||
qlever_target_link_libraries(SortPerformanceEstimator) add_library( | ||
engine Engine.cpp QueryExecutionTree.cpp Operation.cpp ResultTable | ||
.cpp LocalVocab.cpp IndexScan.cpp Join.cpp Sort.cpp Distinct | ||
.cpp OrderBy.cpp Filter.cpp Server.cpp QueryPlanner | ||
.cpp QueryPlanningCostFactors.cpp OptionalJoin | ||
.cpp CountAvailablePredicates.cpp GroupBy.cpp HasPredicateScan | ||
.cpp Union.cpp MultiColumnJoin.cpp TransitivePathBase | ||
.cpp TransitivePathHashMap.cpp TransitivePathBinSearch.cpp Service | ||
.cpp Values.cpp Bind.cpp Minus.cpp RuntimeInformation | ||
.cpp CheckUsePatternTrick.cpp VariableToColumnMap | ||
.cpp ExportQueryExecutionTrees.cpp CartesianProductJoin | ||
.cpp TextIndexScanForWord.cpp TextIndexScanForEntity.cpp idTable / | ||
CompressedExternalIdTable.h) | ||
qlever_target_link_libraries( | ||
engine util index parser sparqlExpressions http | ||
SortPerformanceEstimator Boost::iostreams) | ||
add_subdirectory(sparqlExpressions) | ||
add_library(SortPerformanceEstimator SortPerformanceEstimator.cpp) | ||
qlever_target_link_libraries(SortPerformanceEstimator) | ||
add_library(engine | ||
Engine.cpp QueryExecutionTree.cpp Operation.cpp ResultTable.cpp LocalVocab.cpp | ||
IndexScan.cpp Join.cpp Sort.cpp | ||
Distinct.cpp OrderBy.cpp Filter.cpp | ||
Server.cpp QueryPlanner.cpp QueryPlanningCostFactors.cpp | ||
OptionalJoin.cpp CountAvailablePredicates.cpp GroupBy.cpp HasPredicateScan.cpp | ||
Union.cpp MultiColumnJoin.cpp TransitivePathBase.cpp | ||
TransitivePathHashMap.cpp TransitivePathBinSearch.cpp Service.cpp | ||
Values.cpp Bind.cpp Minus.cpp RuntimeInformation.cpp CheckUsePatternTrick.cpp | ||
VariableToColumnMap.cpp ExportQueryExecutionTrees.cpp | ||
CartesianProductJoin.cpp TextIndexScanForWord.cpp TextIndexScanForEntity.cpp | ||
idTable/CompressedExternalIdTable.h) | ||
qlever_target_link_libraries(engine util index parser sparqlExpressions http SortPerformanceEstimator Boost::iostreams) |
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
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,10 +1,20 @@ | ||
add_library( | ||
sparqlExpressions SparqlExpressionValueGetters.cpp NaryExpression | ||
.cpp SetOfIntervals.cpp SparqlExpressionPimpl.cpp SampleExpression | ||
.cpp RelationalExpressions.cpp AggregateExpression.cpp RegexExpression | ||
.cpp LangExpression.cpp NumericUnaryExpressions | ||
.cpp NumericBinaryExpressions.cpp DateExpressions.cpp StringExpressions | ||
.cpp IsSomethingExpressions.cpp ConditionalExpressions | ||
.cpp SparqlExpressionTypes.cpp SparqlExpression.cpp) | ||
add_library(sparqlExpressions | ||
SparqlExpressionValueGetters.cpp | ||
NaryExpression.cpp | ||
SetOfIntervals.cpp | ||
SparqlExpressionPimpl.cpp | ||
SampleExpression.cpp | ||
RelationalExpressions.cpp | ||
AggregateExpression.cpp | ||
RegexExpression.cpp | ||
LangExpression.cpp | ||
NumericUnaryExpressions.cpp | ||
NumericBinaryExpressions.cpp | ||
DateExpressions.cpp | ||
StringExpressions.cpp | ||
IsSomethingExpressions.cpp | ||
ConditionalExpressions.cpp | ||
SparqlExpressionTypes.cpp | ||
SparqlExpression.cpp) | ||
|
||
qlever_target_link_libraries(sparqlExpressions util index Boost::url) | ||
qlever_target_link_libraries(sparqlExpressions util index Boost::url) |
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
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,7 +1,9 @@ | ||
add_subdirectory(vocabulary) | ||
add_library(index Index.cpp IndexImpl.cpp IndexImpl.Text.cpp Vocabulary | ||
.cpp VocabularyOnDisk.cpp Permutation.cpp TextMetaData | ||
.cpp DocsDB.cpp FTSAlgorithms.cpp PrefixHeuristic | ||
.cpp CompressedRelation.cpp PatternCreator.cpp) | ||
qlever_target_link_libraries( | ||
index util parser vocabulary compilationInfo ${STXXL_LIBRARIES}) | ||
add_library(index | ||
Index.cpp IndexImpl.cpp IndexImpl.Text.cpp | ||
Vocabulary.cpp VocabularyOnDisk.cpp | ||
Permutation.cpp TextMetaData.cpp | ||
DocsDB.cpp FTSAlgorithms.cpp | ||
PrefixHeuristic.cpp CompressedRelation.cpp | ||
PatternCreator.cpp) | ||
qlever_target_link_libraries(index util parser vocabulary compilationInfo ${STXXL_LIBRARIES}) |
Oops, something went wrong.