This file contains hidden or 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 hstore_merge(left HSTORE, right HSTORE) RETURNS HSTORE AS $$ | |
| SELECT $1 || $2; | |
| $$ LANGUAGE SQL; | |
| CREATE AGGREGATE hstore_merge (HSTORE) ( | |
| SFUNC = hstore_merge, | |
| STYPE = HSTORE, | |
| INITCOND = '' | |
| ); |
This file contains hidden or 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 hstore_merge(left HSTORE, right HSTORE) RETURNS HSTORE AS $$ | |
| SELECT $1 || $2; | |
| $$ LANGUAGE SQL; | |
| CREATE AGGREGATE hstore_merge (HSTORE) ( | |
| SFUNC = hstore_merge, | |
| STYPE = HSTORE, | |
| INITCOND = '' | |
| ); |