EncodeDecimalValue encodes an apd.Decimal value with its value tag, appends it to the supplied buffer, and returns the final buffer.
(appendTo []byte, colIDDelta uint32, d *apd.Decimal)
| 2726 | // EncodeDecimalValue encodes an apd.Decimal value with its value tag, appends |
| 2727 | // it to the supplied buffer, and returns the final buffer. |
| 2728 | func EncodeDecimalValue(appendTo []byte, colIDDelta uint32, d *apd.Decimal) []byte { |
| 2729 | appendTo = EncodeValueTag(appendTo, colIDDelta, Decimal) |
| 2730 | return EncodeUntaggedDecimalValue(appendTo, d) |
| 2731 | } |
| 2732 | |
| 2733 | // EncodeUntaggedDecimalValue encodes an apd.Decimal value, appends it to the supplied |
| 2734 | // buffer, and returns the final buffer. |
nothing calls this directly
no test coverage detected
searching dependent graphs…