File tree Expand file tree Collapse file tree 3 files changed +9
-6
lines changed Expand file tree Collapse file tree 3 files changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -149,7 +149,8 @@ Setting up Konclude for building/compiling with Visual Studio 2015/2017:
149
149
150
150
# CHANGELOG
151
151
152
-
152
+ - Konclude v0.7.0-1137:
153
+ - Fixed crashes for SPARQL FILTER expressions in combination with Redland Rasqal.
153
154
154
155
- Konclude v0.7.0-1135:
155
156
- (Limited) SPARQL and query answering support with Redland Rasqal.
Original file line number Diff line number Diff line change @@ -1039,11 +1039,13 @@ namespace Konclude {
1039
1039
for (CExpressionVariable* disVar : disVarList) {
1040
1040
if (projVarPosHash.contains (" ?" + disVar->getName ())) {
1041
1041
cint64 pos = projVarPosHash.value (" ?" + disVar->getName ());
1042
- sortedDisVarList[pos] = disVar;
1042
+ if (pos >= 0 ) {
1043
+ sortedDisVarList[pos] = disVar;
1044
+ }
1043
1045
}
1044
1046
}
1045
1047
for (CExpressionVariable* disVar : disVarList) {
1046
- if (! projVarPosHash.contains (" ?" + disVar->getName ()) ) {
1048
+ if (projVarPosHash.value (" ?" + disVar->getName (), - 1 ) < 0 ) {
1047
1049
sortedDisVarList[nextProjVarPos++] = disVar;
1048
1050
}
1049
1051
}
Original file line number Diff line number Diff line change 1
- #define KONCLUDE_VERSION_GIT_REVISION_NUMBER 1135
2
- #define KONCLUDE_VERSION_GIT_TAG_NAME_STRING "v0.7.0"
3
- #define KONCLUDE_VERSION_GIT_REVISION_HASH_STRING "91b3e331"
1
+ #define KONCLUDE_VERSION_GIT_REVISION_NUMBER 1137
2
+ #define KONCLUDE_VERSION_GIT_TAG_NAME_STRING "v0.7.0"
3
+ #define KONCLUDE_VERSION_GIT_REVISION_HASH_STRING "e414f879"
You can’t perform that action at this time.
0 commit comments