Skip to content

ESQL Support IN operator for Date nanos #119772

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 17 commits into from
Jan 14, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
[CI] Auto commit changes from spotless
  • Loading branch information
elasticsearchmachine committed Jan 8, 2025
commit 2b217a96c245d14c9459f07a92aa182741dbf4d0
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ protected TypeResolution resolveType() { // TODO: move the foldability check fro
seenDateType = listValue.dataType();
}
if ((listValue.dataType().isDate() && listValue.dataType() != seenDateType)
|| (listValue.dataType().isDate() == false &&areCompatible(dt, listValue.dataType()) == false)) {
|| (listValue.dataType().isDate() == false && areCompatible(dt, listValue.dataType()) == false)) {
return new TypeResolution(
format(
null,
Expand Down