Package com.foundationdb.sql.optimizer.rule.TypeResolver

Examples of com.foundationdb.sql.optimizer.rule.TypeResolver.ResolvingVisitor


                if (!emptyRow)
                    replacement = new NullSource();
                else {
                    // set iTinstance types? No.
                    replacement = new ExpressionsSource(Collections.singletonList(Collections.<ExpressionNode>emptyList()));
                    ResolvingVisitor visitor = (ResolvingVisitor) TypeResolver.getResolver(planContext);
                    if (visitor != null) visitor.visitLeave(replacement);
                }
                inOutput.replaceInput(toReplace, replacement);
            }
        }
View Full Code Here

TOP

Related Classes of com.foundationdb.sql.optimizer.rule.TypeResolver.ResolvingVisitor

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.