(b []byte, unixMicros int64, offsetSecs int32)
| 967 | } |
| 968 | |
| 969 | func encodeTimeTZ(b []byte, unixMicros int64, offsetSecs int32) []byte { |
| 970 | b = append(b, timeTZMarker) |
| 971 | b = EncodeVarintAscending(b, unixMicros) |
| 972 | b = EncodeVarintAscending(b, int64(offsetSecs)) |
| 973 | return b |
| 974 | } |
| 975 | |
| 976 | // DecodeTimeTZAscending decodes a timetz.TimeTZ value which was encoded |
| 977 | // using encodeTimeTZ. The remainder of the input buffer and the decoded |
no test coverage detected
searching dependent graphs…