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 | 2086da98cbff650008530f0debce8d357e208b6e (patch) | |
tree | 239e01641871f3799e9ce7b6ad9b9d7308632c5e | |
parent | Fix ordering and test case (diff) | |
download | gentoobrowse-api-2086da98cbff650008530f0debce8d357e208b6e.tar.bz2 gentoobrowse-api-2086da98cbff650008530f0debce8d357e208b6e.tar.xz gentoobrowse-api-2086da98cbff650008530f0debce8d357e208b6e.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, |