We’ve added support for a new SQL function string_to_array
to our managed cloud.
string_to_array
(docs) splits a string based on
a delimiter and returns an array of the split elements.
> SELECT string_to_array('new Materialize SQL function is here!', 'SQL');
Output:
string_to_array
-------------------------------------------
{"new Materialize "," function is here!"}
(1 row)