VEC_FromText
MariaDB starting with 11.6
Vectors were introduced in MariaDB 11.6 Vector Preview.
Syntax
VEC_FromText(s)
Description
VEC_FromText
converts a text representation of the vector (json array of numbers) to a vector (little-endian IEEE float sequence of bytes, 4 bytes per float).
Example
select hex(vec_fromtext('[1,2,3]')); +------------------------------+ | hex(vec_fromtext('[1,2,3]')) | +------------------------------+ | 0000803F0000004000004040 | +------------------------------+
Content reproduced on this site is the property of its respective owners,
and this content is not reviewed in advance by MariaDB. The views, information and opinions
expressed by this content do not necessarily represent those of MariaDB or any other party.