Hi, I have a question about array_to_string(). I think array_to_string() concatenates always array elements from the "beginning" of the array elements and this rule will not be changed on the future minor releases. Is my understanding correct? For example, I understand that array_to_string() "never" output like following result now and in the future, is my understanding correct? [Example] -> array_to_string(ARRAY[1, 2, 3, NULL, 5], ',', '*') [Result] -> 2,1,3,*,5 Currently I use PostgreSQL 9.5. Regards, -- Yusuke, Egashira