Package io.crate.exceptions

Examples of io.crate.exceptions.InvalidTableNameException


    }

    @Override
    public void table(TableIdent tableIdent) {
        if (!isValidTableName(tableIdent.name())) {
            throw new InvalidTableNameException(tableIdent.name());
        }
        SchemaInfo schemaInfo = referenceInfos.getSchemaInfo(tableIdent.schema());
        if (schemaInfo == null) {
            throw new SchemaUnknownException(tableIdent.schema());
        } else if (schemaInfo.systemSchema()) {
View Full Code Here


    }

    @Override
    public void table(TableIdent tableIdent) {
        if (!isValidTableName(tableIdent.name())) {
            throw new InvalidTableNameException(tableIdent.name());
        }
        this.tableIdent = tableIdent;
    }
View Full Code Here

TOP

Related Classes of io.crate.exceptions.InvalidTableNameException

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.