Package com.foundationdb.server.error

Examples of com.foundationdb.server.error.NoSuchFunctionException


                (methodCall.getProcedureName().hasSchema())) {
                // Qualified name is always a routine and an immediate error if not.
                routine = ais.getRoutine(methodCall.getProcedureName().getSchemaName(),
                                         methodCall.getProcedureName().getTableName());
                if ((routine == null) || !context.isAccessible(routine.getName())) {
                    throw new NoSuchFunctionException(methodCall.getProcedureName().toString());
                }
            }
            else if (!functionDefined.isDefined(methodCall.getMethodName())) {
                // Unqualified only if not a built-in function and error deferred.
                routine = ais.getRoutine(defaultSchemaName, methodCall.getMethodName());
View Full Code Here


    public OverloadResult<V> get(String name, List<? extends TPreptimeValue> inputs)
    {
        Iterable<? extends ScalarsGroup<V>> scalarsGroup = overloadsRegistry.get(name);
        if (scalarsGroup == null) {
            throw new NoSuchFunctionException(name);
        }
        return inputBasedResolution(name, inputs, scalarsGroup);
    }
View Full Code Here

TOP

Related Classes of com.foundationdb.server.error.NoSuchFunctionException

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.