Package com.foundationdb.server.error

Examples of com.foundationdb.server.error.ReferencedSQLJJarException


            }
        }
        for (SQLJJar jar : schema.getSQLJJars().values()) {
            for (Routine routine : jar.getRoutines()) {
                if (!routine.getName().getSchemaName().equals(schemaName)) {
                    throw new ReferencedSQLJJarException(jar);
                }
            }
        }
        for (Table table : explicitlyDroppedTables) {
            dropTableAndChildren(session, table);
View Full Code Here


        checkSystemSchema(jarName, inSystem);
        SQLJJar sqljJar = oldAIS.getSQLJJar(jarName);
        if (sqljJar == null)
            throw new NoSuchSQLJJarException(jarName);
        if (!sqljJar.getRoutines().isEmpty())
            throw new ReferencedSQLJJarException(sqljJar);
        final AkibanInformationSchema newAIS = aisCloner.clone(oldAIS);
        newAIS.removeSQLJJar(jarName);
        if (inSystem) {
            unStoredAISChange(session, newAIS);
        }
View Full Code Here

TOP

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

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.