Skip to content

Commit b0ac5f1

Browse files
committed
Fix merge
1 parent 0e6e7a1 commit b0ac5f1

File tree

1 file changed

+1
-1
lines changed
  • x-pack/plugin/esql/qa/testFixtures/src/main/java/org/elasticsearch/xpack/esql

1 file changed

+1
-1
lines changed

x-pack/plugin/esql/qa/testFixtures/src/main/java/org/elasticsearch/xpack/esql/EsqlTestUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -730,7 +730,7 @@ public static Literal randomLiteral(DataType type) {
730730
case SHORT -> randomShort();
731731
case INTEGER, COUNTER_INTEGER -> randomInt();
732732
case LONG, COUNTER_LONG -> randomLong();
733-
case UNSIGNED_LONG, DATE_NANOS -> randomNonNegativeLong();
733+
case UNSIGNED_LONG -> randomNonNegativeLong();
734734
case DATE_PERIOD -> Period.of(randomIntBetween(-1000, 1000), randomIntBetween(-13, 13), randomIntBetween(-32, 32));
735735
case DATETIME -> randomMillisUpToYear9999();
736736
case DATE_NANOS -> randomLongBetween(0, Long.MAX_VALUE);

0 commit comments

Comments
 (0)