You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/main/java/org/springframework/data/elasticsearch/core/convert/AbstractRangePropertyValueConverter.java
+11-5
Original file line number
Diff line number
Diff line change
@@ -32,9 +32,19 @@ public abstract class AbstractRangePropertyValueConverter<T> extends AbstractPro
Copy file name to clipboardExpand all lines: src/main/java/org/springframework/data/elasticsearch/core/convert/TemporalRangePropertyValueConverter.java
+2-2
Original file line number
Diff line number
Diff line change
@@ -34,9 +34,9 @@ public class TemporalRangePropertyValueConverter extends AbstractRangePropertyVa
Copy file name to clipboardExpand all lines: src/main/java/org/springframework/data/elasticsearch/core/mapping/SimpleElasticsearchPersistentProperty.java
Copy file name to clipboardExpand all lines: src/test/java/org/springframework/data/elasticsearch/core/convert/MappingElasticsearchConverterUnitTests.java
+20-3
Original file line number
Diff line number
Diff line change
@@ -990,7 +990,13 @@ class RangeTests {
990
990
"gte": "2021-01-01T00:30:00.000+02:00",
991
991
"lte": "2021-01-01T00:30:00.000+02:00"
992
992
},
993
-
"nullRange": null
993
+
"nullRange": null,
994
+
"integerRangeList": [
995
+
{
996
+
"gte": "2",
997
+
"lte": "5"
998
+
}
999
+
]
994
1000
}
995
1001
""";
996
1002
@@ -1020,6 +1026,7 @@ public void shouldReadRanges() throws JSONException {
0 commit comments