Package org.voltdb.compilereport

Examples of org.voltdb.compilereport.IndexAnnotation


        // skip CRUD generated procs
        if (proc.getDefaultproc()) {
            return;
        }

        IndexAnnotation ia = (IndexAnnotation) index.getAnnotation();
        if (ia == null) {
            ia = new IndexAnnotation();
            index.setAnnotation(ia);
        }
        ia.statementsThatUseThis.add(stmt);
        ia.proceduresThatUseThis.add(proc);
View Full Code Here

TOP

Related Classes of org.voltdb.compilereport.IndexAnnotation

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.