Package edu.brown.designer.AccessGraph

Examples of edu.brown.designer.AccessGraph.AccessType


                if (debug_table)
                    LOG.trace("Creating scan edge to " + table0 + " for " + catalog_stmt);
                // if (debug) if (d) LOG.debug("Scan Column SET[" +
                // table0.getName() + "]: " + cset.debug());
                DesignerVertex vertex = agraph.getVertex(table0);
                AccessType atype = (catalog_stmt.getQuerytype() == QueryType.INSERT.getValue() ? AccessType.INSERT : AccessType.SCAN);
                this.addEdge(agraph, atype, cset, vertex, vertex, catalog_stmt);
            }
            // --------------------------------------------------------------
        } // FOR
        return;
View Full Code Here

TOP

Related Classes of edu.brown.designer.AccessGraph.AccessType

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.