Skip to content

Commit

Permalink
Fix merge
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosdelest committed Dec 9, 2024
1 parent 0e6e7a1 commit b0ac5f1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -730,7 +730,7 @@ public static Literal randomLiteral(DataType type) {
case SHORT -> randomShort();
case INTEGER, COUNTER_INTEGER -> randomInt();
case LONG, COUNTER_LONG -> randomLong();
case UNSIGNED_LONG, DATE_NANOS -> randomNonNegativeLong();
case UNSIGNED_LONG -> randomNonNegativeLong();
case DATE_PERIOD -> Period.of(randomIntBetween(-1000, 1000), randomIntBetween(-13, 13), randomIntBetween(-32, 32));
case DATETIME -> randomMillisUpToYear9999();
case DATE_NANOS -> randomLongBetween(0, Long.MAX_VALUE);
Expand Down

0 comments on commit b0ac5f1

Please sign in to comment.