EncodeTimeTZValue encodes a timetz.TimeTZ value with its value tag, appends it to the supplied buffer, and returns the final buffer.
(appendTo []byte, colIDDelta uint32, t timetz.TimeTZ)
| 2672 | // EncodeTimeTZValue encodes a timetz.TimeTZ value with its value tag, appends it to |
| 2673 | // the supplied buffer, and returns the final buffer. |
| 2674 | func EncodeTimeTZValue(appendTo []byte, colIDDelta uint32, t timetz.TimeTZ) []byte { |
| 2675 | appendTo = EncodeValueTag(appendTo, colIDDelta, TimeTZ) |
| 2676 | return EncodeUntaggedTimeTZValue(appendTo, t) |
| 2677 | } |
| 2678 | |
| 2679 | // EncodeUntaggedTimeTZValue encodes a time.Time value, appends it to the supplied buffer, |
| 2680 | // and returns the final buffer. |
nothing calls this directly
no test coverage detected
searching dependent graphs…