Strabon
changeset 1451:918c1567c83b temporals
fixed a typo in the construction of the expression in the cases of
temporal functions (should have TemporalRelationFunc instead of
SpatialRelationshipFunc)
temporal functions (should have TemporalRelationFunc instead of
SpatialRelationshipFunc)
author | Stella Giannakopoulou <sgian@di.uoa.gr> |
---|---|
date | Tue Jan 13 19:18:52 2015 +0200 (2015-01-13) |
parents | f1f992d1cfd4 |
children | 501005e44247 |
files | generaldb/src/main/java/org/openrdf/sail/generaldb/algebra/factories/GeneralDBBooleanExprFactory.java |
line diff
1.1 --- a/generaldb/src/main/java/org/openrdf/sail/generaldb/algebra/factories/GeneralDBBooleanExprFactory.java Tue Oct 14 12:46:24 2014 +0300 1.2 +++ b/generaldb/src/main/java/org/openrdf/sail/generaldb/algebra/factories/GeneralDBBooleanExprFactory.java Tue Jan 13 19:18:52 2015 +0200 1.3 @@ -786,7 +786,7 @@ 1.4 { 1.5 Function function = FunctionRegistry.getInstance().get(functionCall.getURI()); 1.6 //FIXME more cases to be added later. E.g, for the temporal construct functions and temporal metric functions 1.7 - if(function instanceof SpatialRelationshipFunc) 1.8 + if(function instanceof TemporalRelationFunc) 1.9 { 1.10 return temporalRelationFunction(functionCall,function); 1.11 }