Hello,

it is quite easy to introduce a function for splitting a String into an 
array, but most of the time, one has to accept the out of the box defaults.

CREATE ALIAS regexp_split_to_array AS $$
String[] split(String value, String separator) {
    return value == null || separator == null ? null : 
value.split(separator);
}
$$;

Would it be possible to introduce a function like this for compatibility 
with PostgreSQL for the next H2 version?

Regards,
Christian

-- 
You received this message because you are subscribed to the Google Groups "H2 
Database" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/h2-database/dc616b36-2615-47ee-80f3-aac1b622e52a%40googlegroups.com.

Reply via email to