mirror of
https://github.com/spring-projects/spring-data-elasticsearch.git
synced 2025-10-09 20:08:55 +00:00
Fix string comparison in TypeUtils.
Original Pull Request #3177 Closes #3176 Signed-off-by: Peter-Josef Meisch <pj.meisch@sothawo.com> (cherry picked from commit 0e1a97a27afbd793c61865e75824394e0942388a) (cherry picked from commit 00c99852fabf9eb31dc9a04a9f4314cc89eb978c)
This commit is contained in:
parent
0f7dc4f54d
commit
21306745b3
@ -436,7 +436,7 @@ final class TypeUtils {
|
||||
// values taken from the RHLC implementation
|
||||
if (value == null) {
|
||||
return -2;
|
||||
} else if ("all".equals(value.toUpperCase())) {
|
||||
} else if ("all".equals(value.toLowerCase())) {
|
||||
return -1;
|
||||
} else {
|
||||
try {
|
||||
|
Loading…
x
Reference in New Issue
Block a user