| 728 | } |
| 729 | |
| 730 | static inline int64_t Int96GetNanoSeconds(const parquet::Int96& i96) { |
| 731 | const auto decoded = DecodeInt96Timestamp(i96); |
| 732 | return static_cast<int64_t>(decoded.days_since_epoch * kNanosecondsPerDay + |
| 733 | decoded.nanoseconds); |
| 734 | } |
| 735 | |
| 736 | static inline int64_t Int96GetMicroSeconds(const parquet::Int96& i96) { |
| 737 | const auto decoded = DecodeInt96Timestamp(i96); |