Package com.foundationdb.server.error

Examples of com.foundationdb.server.error.ColumnPositionNotOrderedException


    private void checkTable (Table table, AISValidationOutput output) {
        for (int i = 0; i < table.getColumnsIncludingInternal().size(); i++) {
            if (table.getColumnsIncludingInternal().get(i).getPosition() != i) {
                output.reportFailure(new AISValidationFailure(
                        new ColumnPositionNotOrderedException(table.getName(),
                                table.getColumn(i).getName(),
                                table.getColumn(i).getPosition(),
                                i)));
            }
        }
View Full Code Here

TOP

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

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.