From a7c60fb8994603499316a324e0b4b9a5e98ab5d3 Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Mon, 19 Dec 2016 21:44:41 +0000 Subject: Fix owner of sum(tsvector) --- gentoobrowse-api/db/schema.sql | 4 ++-- 1 file 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, -- cgit v1.2.3