Package io.crate.exceptions

Examples of io.crate.exceptions.AmbiguousColumnAliasException


    @Nullable
    public Symbol symbolFromAlias(String alias) {
        Collection<Symbol> symbols = aliasMap.get(alias);
        if (symbols.size() > 1) {
            throw new AmbiguousColumnAliasException(alias);
        }
        if (symbols.isEmpty()) {
            return null;
        }
View Full Code Here

TOP

Related Classes of io.crate.exceptions.AmbiguousColumnAliasException

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.