| 625 | } |
| 626 | |
| 627 | void unpackTimestampWithTimeZone( |
| 628 | int64_t packed, |
| 629 | int64_t& timestamp, |
| 630 | int16_t& timezone) { |
| 631 | timestamp = packed >> 12; |
| 632 | timezone = packed & 0xfff; |
| 633 | } |
| 634 | |
| 635 | void readTimestampWithTimeZone( |
| 636 | ByteInputStream* source, |
no outgoing calls
no test coverage detected