Package com.oltpbenchmark.benchmarks.tpcc.procedures

Examples of com.oltpbenchmark.benchmarks.tpcc.procedures.Delivery


        } else if (nextTransaction.getProcedureClass().equals(OrderStatus.class)) {
          OrderStatus proc4 = (OrderStatus) this.getProcedure(OrderStatus.class);
          proc4.run(conn, gen, terminalWarehouseID, numWarehouses,
              terminalDistrictLowerID, terminalDistrictUpperID, this);
        } else if (nextTransaction.getProcedureClass().equals(Delivery.class)) {
          Delivery proc5 = (Delivery) this.getProcedure(Delivery.class);
      proc5.run(conn, gen, terminalWarehouseID, numWarehouses,
          terminalDistrictLowerID, terminalDistrictUpperID, this);
        } else {
          System.err.println("We have been invoked with an INVALID transactionType?!");
          throw new RuntimeException("Bad transaction type = "+ nextTransaction);
        }
View Full Code Here

TOP

Related Classes of com.oltpbenchmark.benchmarks.tpcc.procedures.Delivery

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.