]> git.openstreetmap.org Git - nominatim.git/blob - sql/hstore_compatability_9_0.sql
added FIPS codes for 60xxx, 66xxx, 69xxx, 72xxx and 78xxx
[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;