Package com.foundationdb.server.error

Examples of com.foundationdb.server.error.UnsupportedCollationException


    private void validateCollationByName(final String collation, final String schemaName, final String tableName,
            final String columnName, AISValidationOutput output) {
        try {
            AkCollatorFactory.getAkCollator(collation);
        } catch (UnsupportedCollationException e) {
            output.reportFailure(new AISValidationFailure(new UnsupportedCollationException(collation)));
        }
    }
View Full Code Here


        return locale;
    }

    private static void checkLocale(ULocale locale, String scheme) {
        if (!locales.contains(locale))
            throw new UnsupportedCollationException(scheme);
    }
View Full Code Here

TOP

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

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.