EncodeNullValue encodes a null value, appends it to the supplied buffer, and returns the final buffer.
(appendTo []byte, colID uint32)
| 1826 | // EncodeNullValue encodes a null value, appends it to the supplied buffer, and |
| 1827 | // returns the final buffer. |
| 1828 | func EncodeNullValue(appendTo []byte, colID uint32) []byte { |
| 1829 | return EncodeValueTag(appendTo, colID, Null) |
| 1830 | } |
| 1831 | |
| 1832 | // EncodeNotNullValue encodes a not null value, appends it to the supplied |
| 1833 | // buffer, and returns the final buffer. |
nothing calls this directly
no test coverage detected
searching dependent graphs…