--
-- array_prepend/2
--
create or replace function array_prepend(
  anyelement,
  anyarray
) returns anyarray as $$
array_prepend$$ language plpgsql;