Skip to content

Commit

Permalink
Delivery transaction must use all the districts (cmu-db#360)
Browse files Browse the repository at this point in the history
  • Loading branch information
eivanov89 committed Nov 26, 2023
1 parent 19bfe6a commit 87d797c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ public void run(Connection conn, Random gen, int w_id, int numWarehouses, int te

int[] orderIDs = new int[10];

for (d_id = 1; d_id <= terminalDistrictUpperID; d_id++) {
for (d_id = 1; d_id <= TPCCConfig.configDistPerWhse; d_id++) {
Integer no_o_id = getOrderId(conn, w_id, d_id);

if (no_o_id == null) {
Expand Down

0 comments on commit 87d797c

Please sign in to comment.