lvector_out
Signature:
CREATE FUNCTION lvector_out(lvec lvector_embedding) RETURNS LVARCHAR;
Purpose: Converts the internal lvector_embedding value back to text.
Example:
SELECT lvector_out(lvector_in('[1,2,3,4]')) AS roundtrip
FROM systables
WHERE tabid = 1;Note: Tested output: roundtrip =
[1,2,3,4].