Skip to content

Commit 67ff8e8

Browse files
Fix
1 parent da3f737 commit 67ff8e8

File tree

1 file changed

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

1 file changed

+1
-1
lines changed

x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/expression/predicate/Range.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ class is not serializable (note that writeTo throws UnsupportedOperationExceptio
174174
upperValue = asDateTime(upperString);
175175
}
176176
if (lowerValue instanceof BytesRef br) {
177-
lowerValue = BytesRefs.toBytesRef(br);
177+
lowerValue = BytesRefs.toString(br);
178178
}
179179
if (lowerValue instanceof String lowerString) {
180180
lowerValue = asDateTime(lowerString);

0 commit comments

Comments
 (0)