use of org.apache.asterix.optimizer.rules.InlineUnnestFunctionRule in project asterixdb by apache.
the class RuleCollections method buildTypeInferenceRuleCollection.
public static final List<IAlgebraicRewriteRule> buildTypeInferenceRuleCollection() {
List<IAlgebraicRewriteRule> typeInfer = new LinkedList<>();
typeInfer.add(new InlineUnnestFunctionRule());
typeInfer.add(new InferTypesRule());
typeInfer.add(new CheckFilterExpressionTypeRule());
return typeInfer;
}
Aggregations