Package com.foundationdb.server.error

Examples of com.foundationdb.server.error.IndexColumnIsPartialException


        for(Table table : ais.getTables().values()) {
            for(Index index : table.getIndexesIncludingInternal()) {
                for(IndexColumn indexColumn : index.getKeyColumns()) {
                    if(indexColumn.getIndexedLength() != null) {
                        output.reportFailure(new AISValidationFailure(
                                new IndexColumnIsPartialException(table.getName(), index.getIndexName().getName(), indexColumn.getPosition())
                        ));
                    }
                }
            }
        }
View Full Code Here

TOP

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

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.