Package com.foundationdb.server.error

Examples of com.foundationdb.server.error.GeneratorWrongDatatypeException


                                column.getName(), column.getTypeName())));
            }
           
            if (column.getDefaultIdentity() != null && !TypeValidator.isSupportedForGenerator(column.getType())) {
                failures.reportFailure(new AISValidationFailure(
                        new GeneratorWrongDatatypeException (column.getTable().getName(),
                                column.getName(), column.getTypeName())));
            }
        }
View Full Code Here

TOP

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

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.