Package com.oltpbenchmark.benchmarks.auctionmark.util

Examples of com.oltpbenchmark.benchmarks.auctionmark.util.Category


        }
        @Override
        protected int populateRow(Object[] row) {
            int col = 0;

            Category category = this.categories.poll();
            assert(category != null);
           
            // C_ID
            row[col++] = category.getCategoryID();
            // C_NAME
            row[col++] = category.getName();
            // C_PARENT_ID
            row[col++] = category.getParentCategoryID();
           
            return (col);
        }
View Full Code Here

TOP

Related Classes of com.oltpbenchmark.benchmarks.auctionmark.util.Category

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.