| 276 | } |
| 277 | |
| 278 | Timestamp readLosslessTimestamp(ByteInputStream* source) { |
| 279 | int64_t seconds = source->read<int64_t>(); |
| 280 | uint64_t nanos = source->read<uint64_t>(); |
| 281 | return Timestamp(seconds, nanos); |
| 282 | } |
| 283 | |
| 284 | void readLosslessTimestampValues( |
| 285 | ByteInputStream* source, |
no test coverage detected