Skip to content
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

QL: Eliminate internal type DATETIME_NANOS #68220

Merged
merged 19 commits into from
Feb 10, 2021
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
add comment
  • Loading branch information
matriv committed Jan 29, 2021
commit 8cf35d5d92c10d96bc24c527c2b6b9d77bdc51c1
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,8 @@ private static boolean hasDocValues(DataType dataType) {
}

private static String format(DataType dataType) {
// We need epoch_millis for the tiebreaker timestamp field, because parsing timestamp strings
// can have a negative performance impact
return dataType == DATETIME ? "epoch_millis" : null;
}
}