diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2016-12-19 21:44:41 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2016-12-27 17:16:13 +0000 |
commit | a7c60fb8994603499316a324e0b4b9a5e98ab5d3 (patch) | |
tree | 239e01641871f3799e9ce7b6ad9b9d7308632c5e | |
parent | Fix ordering and test case (diff) | |
download | gentoobrowse-api-a7c60fb8994603499316a324e0b4b9a5e98ab5d3.tar.bz2 gentoobrowse-api-a7c60fb8994603499316a324e0b4b9a5e98ab5d3.tar.xz gentoobrowse-api-a7c60fb8994603499316a324e0b4b9a5e98ab5d3.zip |
Fix owner of sum(tsvector)
-rw-r--r-- | gentoobrowse-api/db/schema.sql | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gentoobrowse-api/db/schema.sql b/gentoobrowse-api/db/schema.sql index 38c96e2..36ebea6 100644 --- a/gentoobrowse-api/db/schema.sql +++ b/gentoobrowse-api/db/schema.sql @@ -295,12 +295,12 @@ BEGIN END; $$; ALTER FUNCTION gentoobrowse.pathpartsmatchesspecs(pathparts text[], spec filterspec[]) OWNER TO gentoo; --- Name: sum(tsvector); Type: AGGREGATE; Schema: gentoobrowse; Owner: postgres +-- Name: sum(tsvector); Type: AGGREGATE; Schema: gentoobrowse; Owner: gentoo CREATE AGGREGATE sum(tsvector) ( SFUNC = tsvector_concat, STYPE = tsvector ); -ALTER AGGREGATE gentoobrowse.sum(tsvector) OWNER TO postgres; +ALTER AGGREGATE gentoobrowse.sum(tsvector) OWNER TO gentoo; -- Name: ~; Type: OPERATOR; Schema: gentoobrowse; Owner: gentoo CREATE OPERATOR ~ ( PROCEDURE = ebuildversionrange, |