EncodeNotNullValue encodes a not null value, appends it to the supplied buffer, and returns the final buffer.
(appendTo []byte, colIDDelta uint32)
| 2588 | // EncodeNotNullValue encodes a not null value, appends it to the supplied |
| 2589 | // buffer, and returns the final buffer. |
| 2590 | func EncodeNotNullValue(appendTo []byte, colIDDelta uint32) []byte { |
| 2591 | return EncodeValueTag(appendTo, colIDDelta, NotNull) |
| 2592 | } |
| 2593 | |
| 2594 | // EncodeBoolValue encodes a bool value, appends it to the supplied buffer, and |
| 2595 | // returns the final buffer. |
nothing calls this directly
no test coverage detected
searching dependent graphs…