EncodeTimeValue encodes a time.Time value with its value tag, appends it to the supplied buffer, and returns the final buffer.
(appendTo []byte, colID uint32, t time.Time)
| 1896 | // EncodeTimeValue encodes a time.Time value with its value tag, appends it to |
| 1897 | // the supplied buffer, and returns the final buffer. |
| 1898 | func EncodeTimeValue(appendTo []byte, colID uint32, t time.Time) []byte { |
| 1899 | appendTo = EncodeValueTag(appendTo, colID, Time) |
| 1900 | return EncodeUntaggedTimeValue(appendTo, t) |
| 1901 | } |
| 1902 | |
| 1903 | // EncodeUntaggedTimeValue encodes a time.Time value, appends it to the supplied buffer, |
| 1904 | // and returns the final buffer. |
nothing calls this directly
no test coverage detected
searching dependent graphs…