Skip to content

Commit

Permalink
Fix nanosecond timestamps support (#2706)
Browse files Browse the repository at this point in the history
  • Loading branch information
arkanovicz authored Jan 24, 2024
1 parent 1a39f06 commit 61fd3e4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -281,9 +281,9 @@ public static LocalTimestampMicros localTimestampMicros() {
return LOCAL_TIMESTAMP_MICROS_TYPE;
}

private static final LocalTimestampMicros LOCAL_TIMESTAMP_NANOS_TYPE = new LocalTimestampMicros();
private static final LocalTimestampNanos LOCAL_TIMESTAMP_NANOS_TYPE = new LocalTimestampNanos();

public static LocalTimestampMicros localTimestampNanos() {
public static LocalTimestampNanos localTimestampNanos() {
return LOCAL_TIMESTAMP_NANOS_TYPE;
}

Expand Down

0 comments on commit 61fd3e4

Please sign in to comment.