Skip to content

Commit

Permalink
Fix nanosecond timestamps support (apache#2706)
Browse files Browse the repository at this point in the history
  • Loading branch information
arkanovicz authored and Ranbir Kumar committed May 13, 2024
1 parent 74234ec commit 112bd8f
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 112bd8f

Please sign in to comment.