Skip to content

Commit

Permalink
Support more operations
Browse files Browse the repository at this point in the history
  • Loading branch information
renuccif authored Oct 24, 2024
1 parent abe422a commit 1e877a9
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -95,10 +95,10 @@ function <<access.private>> meta::external::store::relational::modelJoins::trans
let targetDatabase = $targetMainTableAlias.database->toOne();
let aggregatedDatabase = ^Database(includes=[$sourceDatabase, $targetDatabase]);

assertContains(['equal', 'not', 'and', 'or'], $functionOperator, 'Failed to translate XStore Property into Relational Property because function operator is not in standard list');
assertContains(['equal', 'not', 'and', 'or', 'greaterThanEqual', 'greaterThan', 'lessThanEqual', 'lessThan' ], $functionOperator, 'Failed to translate XStore Property into Relational Property because function operator is not in standard list');

let join = if(
$functionOperator=='equal' || $functionOperator=='not',
$functionOperator->(['equal', 'not', 'greaterThanEqual', 'greaterThan', 'lessThanEqual', 'lessThan' ]),
| let expressionParameters = $expressionSequence.parametersValues->evaluateAndDeactivate();
let sourceSet = getClassMappingAtId($classMappings, $sourceId);
let targetSet = getClassMappingAtId($classMappings, $targetId);
Expand Down

0 comments on commit 1e877a9

Please sign in to comment.