Package com.foundationdb.server.error

Examples of com.foundationdb.server.error.TableIsBadSubqueryException


        default:
            // Subqueries in SELECT don't see earlier FROM list tables.
            try {
                return (FromTable)fromTable.accept(this);
            } catch (StandardException e) {
                throw new TableIsBadSubqueryException (fromTable.getOrigTableName().getSchemaName(), fromTable.getOrigTableName().getTableName(), e.getMessage());
            }
        }
    }
View Full Code Here


                    fromSubquery.setResultColumns(outerRCL);
                }
            }
        }
        catch (StandardException e) {
            throw new TableIsBadSubqueryException("", fromSubquery.getExposedName(), e.getMessage());
        }

        return fromSubquery;
    }
View Full Code Here

TOP

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

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.