use of org.apache.asterix.lang.sqlpp.rewrites.visitor.InlineWithExpressionVisitor in project asterixdb by apache.
the class SqlppQueryRewriter method inlineWithExpressions.
protected void inlineWithExpressions() throws CompilationException {
String inlineWith = metadataProvider.getConfig().get(INLINE_WITH);
if (inlineWith != null && inlineWith.equalsIgnoreCase(NOT_INLINE_WITH)) {
return;
}
// Inlines with expressions.
InlineWithExpressionVisitor inlineWithExpressionVisitor = new InlineWithExpressionVisitor(context);
topExpr.accept(inlineWithExpressionVisitor, null);
}
Aggregations