mirror of
https://github.com/osm-search/Nominatim.git
synced 2024-11-10 11:42:13 +03:00
9 lines
140 B
PL/PgSQL
9 lines
140 B
PL/PgSQL
CREATE OR REPLACE FUNCTION hstore(k text, v text) RETURNS HSTORE
|
|
AS $$
|
|
DECLARE
|
|
BEGIN
|
|
RETURN k => v;
|
|
END;
|
|
$$
|
|
LANGUAGE plpgsql IMMUTABLE;
|