Package com.facebook.presto.sql.planner

Examples of com.facebook.presto.sql.planner.ExpressionInterpreter.evaluate()


    private static Object evaluate(Expression expression)
    {
        ExpressionInterpreter interpreter = ExpressionInterpreter.expressionInterpreter(expression, DUAL_METADATA_MANAGER, new Session("user", "test", DEFAULT_CATALOG, DEFAULT_SCHEMA, null, null));

        return interpreter.evaluate((RecordCursor) null);
    }
}
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.