Package com.foundationdb.server.error

Examples of com.foundationdb.server.error.NotAllowedByConfigException


        }

        if(!withSpatialIndexes) {
            for(Index index : indexesToAdd) {
                if(index.isSpatial()) {
                    throw new NotAllowedByConfigException("spatial index");
                }
            }
        }

        onlineAt(OnlineDDLMonitor.Stage.PRE_METADATA);
View Full Code Here


    private TableTransform getConcurrentDMLTransform(Session session, Table table) {
        if(!schemaManager.isOnlineActive(session, table.getTableId())) {
            return null;
        }
        if(!withConcurrentDML) {
            throw new NotAllowedByConfigException("DML during online DDL");
        }
        TableTransform transform = getTransformCache(session, null).get(table.getTableId());
        if(isTransformedTable(transform, table)) {
            return null;
        }
View Full Code Here

TOP

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

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.