-
-
Save rafaelveloso/e2a6822752aa1b2a7e44 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE OR REPLACE FUNCTION escape_json (text) RETURNS text AS $$ | |
SELECT replace($1, '''', '\'''); $$ LANGUAGE SQL IMMUTABLE; | |
CREATE OR REPLACE FUNCTION to_json(text) RETURNS text AS $$ | |
SELECT escape_json($1) $$ LANGUAGE SQL IMMUTABLE; | |
CREATE OR REPLACE FUNCTION to_json(KEY text, value text) RETURNS text AS $$ | |
SELECT '''' || to_json($1) || ''': ''' || to_json($2) || ''''; $$ LANGUAGE SQL IMMUTABLE; | |
CREATE OR REPLACE FUNCTION to_json(hstore) RETURNS text AS $$ | |
SELECT '{' || array_to_string(array_agg(to_json(item.KEY, item.value)), ', ') || '}' | |
FROM each($1) item; $$ LANGUAGE SQL IMMUTABLE; | |
CREATE OR REPLACE FUNCTION to_json(text[]) RETURNS text AS $$ | |
SELECT to_json(hstore($1)); $$ LANGUAGE SQL IMMUTABLE; | |
SELECT to_json(hstore(array[array['a', 'b'], array['c', 'd']])) two_dimensional_array_to_hstore_to_json, | |
to_json(array[array['a', 'b'], array['c', 'd']]) two_dimensional_array_to_to_json, | |
to_json(hstore(array['a', 'b'], array['c', 'd'])) multi_array_to_hstore_to_json, | |
to_json(hstore(array['a', 'b', 'c', 'd'])) array_to_hstore_to_json, | |
to_json(array['a', 'b', 'c', 'd']) array_to_to_json; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment