Skip to content

Instantly share code, notes, and snippets.

View kenaniah's full-sized avatar

Kenaniah Cerny kenaniah

  • Rancho Palos Verdes, CA
View GitHub Profile
@kenaniah
kenaniah / hstore2json.sql
Created October 26, 2011 04:59 — forked from booo/hs_2json.sql
hstore to json function for postgresql
CREATE OR REPLACE FUNCTION public.hstore2json (
hs public.hstore
)
RETURNS text AS
$body$
DECLARE
rv text;
r record;
BEGIN
rv:='';