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

EQL: Sequences will now support nano-timestamps #76953

Merged
merged 11 commits into from
Sep 1, 2021
Prev Previous commit
Remove no longer unused constant
Remove no longer unused constant.
  • Loading branch information
bpintea committed Sep 1, 2021
commit bc77ffb56a567a03e2ec3185f6b749ba1b04b40c
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
public abstract class Timestamp {
static final long MILLIS_PER_SECOND = 1_000L;
static final long NANOS_PER_MILLI = 1_000_000L;
static final long NANOS_PER_SECOND = MILLIS_PER_SECOND * NANOS_PER_MILLI;
private static final long[] MICROS_MULTIPLIER = {0L, 100_000L, 10_000L, 1_000L, 1_00L, 10L};

private String source;
Expand Down