Examples of ViewHasBadSubqueryException


Examples of com.foundationdb.server.error.ViewHasBadSubqueryException

            if (typeComputer != null)
                view.getSubquery().accept(typeComputer);
            return view;
        }
        catch (StandardException ex) {
            throw new ViewHasBadSubqueryException(ddl.getObjectName().toString(),
                                                  ex.getMessage());
        }
    }
View Full Code Here

Examples of com.foundationdb.server.error.ViewHasBadSubqueryException

        }
        catch (StandardException ex) {
            String name = ddl;
            if (view != null)
                name = view.getName().toString();
            throw new ViewHasBadSubqueryException(name, ex.getMessage());
        }
        return view;
    }
View Full Code Here

Examples of com.foundationdb.server.error.ViewHasBadSubqueryException

                FromSubquery viewSubquery;
                try {
                    viewSubquery = viewdef.copySubquery(fromBaseTable.getParserContext());
                }
                catch (StandardException ex) {
                    throw new ViewHasBadSubqueryException(origName.toString(),
                                                          ex.getMessage());
                }
                if (fromBaseTable.getCorrelationName() != null)
                    tableName = fromBaseTable.getCorrelationName();
                viewSubquery.setCorrelationName(tableName);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.