Package com.foundationdb.sql.script

Examples of com.foundationdb.sql.script.ScriptFunctionJavaRoutineTExpression


        switch (routine.getCallingConvention()) {
        case JAVA:
            return new ServerJavaMethodTExpression(routine, inputs);
        case SCRIPT_FUNCTION_JAVA:
        case SCRIPT_FUNCTION_JSON:
            return new ScriptFunctionJavaRoutineTExpression(routine, inputs);
        case SCRIPT_BINDINGS:
        case SCRIPT_BINDINGS_JSON:
            return new ScriptBindingsRoutineTExpression(routine, inputs);
        default:
            throw new AkibanInternalException("Unimplemented routine " + routine.getName());
View Full Code Here

TOP

Related Classes of com.foundationdb.sql.script.ScriptFunctionJavaRoutineTExpression

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.