]> git.openstreetmap.org Git - nominatim.git/blob - sql/hstore_compatability_9_0.sql
move setupclass, move command line array, remove args from update array
[nominatim.git] / sql / hstore_compatability_9_0.sql
1 CREATE OR REPLACE FUNCTION hstore(k text, v text) RETURNS HSTORE
2   AS $$
3 DECLARE
4 BEGIN
5   RETURN k => v;
6 END;
7 $$
8 LANGUAGE plpgsql IMMUTABLE;