use of org.apache.asterix.optimizer.rules.temporal.TranslateIntervalExpressionRule in project asterixdb by apache.
the class RuleCollections method buildInitialTranslationRuleCollection.
public static final List<IAlgebraicRewriteRule> buildInitialTranslationRuleCollection() {
List<IAlgebraicRewriteRule> translationRules = new LinkedList<>();
translationRules.add(new TranslateIntervalExpressionRule());
translationRules.add(new ExtractGroupByDecorVariablesRule());
return translationRules;
}
Aggregations