Skip to content

Commit

Permalink
Using random object
Browse files Browse the repository at this point in the history
  • Loading branch information
javiercj93 committed Sep 9, 2024
1 parent ba3412d commit 13e8b89
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ public SamplePOJO() {
nestedInnerString = innerString;

groupBitmapUint32 = ClickHouseBitmap.wrap(random.ints(5, Integer.MAX_VALUE - 100, Integer.MAX_VALUE).toArray());
groupBitmapUint64 = ClickHouseBitmap.wrap(new Random().longs(5, Long.MAX_VALUE - 100, Long.MAX_VALUE).toArray());
groupBitmapUint64 = ClickHouseBitmap.wrap(random.longs(5, Long.MAX_VALUE - 100, Long.MAX_VALUE).toArray());
}

public int getInt8() {
Expand Down

0 comments on commit 13e8b89

Please sign in to comment.