EncodeTSQueryValue encodes an already-byte-encoded TSQuery 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)
| 2820 | // value tag but with a length prefix, appends it to the supplied buffer, and |
| 2821 | // returns the final buffer. |
| 2822 | func EncodeTSQueryValue(appendTo []byte, colIDDelta uint32, data []byte) []byte { |
| 2823 | appendTo = EncodeValueTag(appendTo, colIDDelta, TSQuery) |
| 2824 | return EncodeUntaggedBytesValue(appendTo, data) |
| 2825 | } |
| 2826 | |
| 2827 | // EncodeTSVectorValue encodes an already-byte-encoded TSVector value with no |
| 2828 | // 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…