Skip to content

Commit

Permalink
fix minus
Browse files Browse the repository at this point in the history
  • Loading branch information
leaves12138 committed Mar 18, 2024
1 parent ad2e117 commit 868b9b3
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -340,10 +340,11 @@ private void zorder(List<String> columns) throws Exception {
}

private void hilbert(List<String> columns) throws Exception {
String rangeStrategy = RANDOM.nextBoolean() ? "size" : "quantity";
if (RANDOM.nextBoolean()) {
createAction("hilbert", columns).run();
createAction("hilbert", rangeStrategy, columns).run();
} else {
callProcedure("hilbert", columns);
callProcedure("hilbert", rangeStrategy, columns);
}
}

Expand Down

0 comments on commit 868b9b3

Please sign in to comment.