EncodeTSVectorValue encodes an already-byte-encoded TSVector value with no value tag but with a length prefix, appends it to the supplied buffer, and returns the final buffer.
(appendTo []byte, colIDDelta uint32, data []byte)
| 2828 | // value tag but with a length prefix, appends it to the supplied buffer, and |
| 2829 | // returns the final buffer. |
| 2830 | func EncodeTSVectorValue(appendTo []byte, colIDDelta uint32, data []byte) []byte { |
| 2831 | appendTo = EncodeValueTag(appendTo, colIDDelta, TSVector) |
| 2832 | return EncodeUntaggedBytesValue(appendTo, data) |
| 2833 | } |
| 2834 | |
| 2835 | // EncodePGVectorValue encodes an already-byte-encoded PGVector value with no |
| 2836 | // value tag but with a length prefix, appends it to the supplied buffer, and |
nothing calls this directly
no test coverage detected
searching dependent graphs…