EncodeDecimalValue encodes an apd.Decimal value with its value tag, appends it to the supplied buffer, and returns the final buffer.
(appendTo []byte, colID uint32, d *apd.Decimal)
| 1924 | // EncodeDecimalValue encodes an apd.Decimal value with its value tag, appends |
| 1925 | // it to the supplied buffer, and returns the final buffer. |
| 1926 | func EncodeDecimalValue(appendTo []byte, colID uint32, d *apd.Decimal) []byte { |
| 1927 | appendTo = EncodeValueTag(appendTo, colID, Decimal) |
| 1928 | return EncodeUntaggedDecimalValue(appendTo, d) |
| 1929 | } |
| 1930 | |
| 1931 | // EncodeUntaggedDecimalValue encodes an apd.Decimal value, appends it to the supplied |
| 1932 | // buffer, and returns the final buffer. |
nothing calls this directly
no test coverage detected
searching dependent graphs…