EncodeNotNullValue encodes a not null value, appends it to the supplied buffer, and returns the final buffer.
(appendTo []byte, colID uint32)
| 1832 | // EncodeNotNullValue encodes a not null value, appends it to the supplied |
| 1833 | // buffer, and returns the final buffer. |
| 1834 | func EncodeNotNullValue(appendTo []byte, colID uint32) []byte { |
| 1835 | return EncodeValueTag(appendTo, colID, NotNull) |
| 1836 | } |
| 1837 | |
| 1838 | // EncodeBoolValue encodes a bool value, appends it to the supplied buffer, and |
| 1839 | // returns the final buffer. |
nothing calls this directly
no test coverage detected
searching dependent graphs…