Skip to content

Commit

Permalink
Flink: Suppress Nanosecond Warning for TimestampTz ORC value writer i…
Browse files Browse the repository at this point in the history
…n Flink 1.13 to match later Flink versions (apache#5552)
  • Loading branch information
kbendick authored Aug 17, 2022
1 parent 7e12d1e commit b3062e4
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,7 @@ public void nonNullWrite(int rowId, TimestampData data, ColumnVector output) {
private static class TimestampTzWriter implements OrcValueWriter<TimestampData> {
private static final TimestampTzWriter INSTANCE = new TimestampTzWriter();

@SuppressWarnings("JavaInstantGetSecondsGetNano")
@Override
public void nonNullWrite(int rowId, TimestampData data, ColumnVector output) {
TimestampColumnVector cv = (TimestampColumnVector) output;
Expand Down

0 comments on commit b3062e4

Please sign in to comment.