(b []byte, unixMicros int64, offsetSecs int32)
| 1450 | } |
| 1451 | |
| 1452 | func encodeTimeTZ(b []byte, unixMicros int64, offsetSecs int32) []byte { |
| 1453 | b = append(b, timeTZMarker) |
| 1454 | b = EncodeVarintAscending(b, unixMicros) |
| 1455 | b = EncodeVarintAscending(b, int64(offsetSecs)) |
| 1456 | return b |
| 1457 | } |
| 1458 | |
| 1459 | // DecodeTimeTZAscending decodes a timetz.TimeTZ value which was encoded |
| 1460 | // using encodeTimeTZ. The remainder of the input buffer and the decoded |
no test coverage detected
searching dependent graphs…