Package edu.brown.designer

Examples of edu.brown.designer.DesignerInfo


     * @param catalog_db
     * @return
     */
    public static PartitionTree generate(CatalogContext catalogContext, PartitionPlan pplan) {
        PartitionTree ptree = new PartitionTree(catalogContext.database);
        DesignerInfo info = new DesignerInfo(catalogContext, null, null);
        try {
            new PartitionPlanTreeGenerator(info, pplan).generate(ptree);
        } catch (Exception ex) {
            ex.printStackTrace();
            return (null);
View Full Code Here

TOP

Related Classes of edu.brown.designer.DesignerInfo

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.