use of org.apache.hyracks.algebricks.rewriter.rules.ExtractGroupByDecorVariablesRule 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