EncodeTimeTZValue encodes a timetz.TimeTZ value with its value tag, appends it to the supplied buffer, and returns the final buffer.
(appendTo []byte, colID uint32, t timetz.TimeTZ)
| 1910 | // EncodeTimeTZValue encodes a timetz.TimeTZ value with its value tag, appends it to |
| 1911 | // the supplied buffer, and returns the final buffer. |
| 1912 | func EncodeTimeTZValue(appendTo []byte, colID uint32, t timetz.TimeTZ) []byte { |
| 1913 | appendTo = EncodeValueTag(appendTo, colID, TimeTZ) |
| 1914 | return EncodeUntaggedTimeTZValue(appendTo, t) |
| 1915 | } |
| 1916 | |
| 1917 | // EncodeUntaggedTimeTZValue encodes a time.Time value, appends it to the supplied buffer, |
| 1918 | // and returns the final buffer. |
nothing calls this directly
no test coverage detected
searching dependent graphs…