projects
/
nominatim.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge remote-tracking branch 'upstream/master'
[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;