PostgreSQL/Array/array append
array_append(ARRAY[1,2], 3)
postgres=# SELECT array_append(ARRAY[1,2], 3);
array_append
--------------
{1,2,3}
(1 row)
postgres=#
postgres=# SELECT array_append(ARRAY[1,2], 3);
array_append
--------------
{1,2,3}
(1 row)
postgres=#