summaryrefslogtreecommitdiff
path: root/contrib/intagg
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2004-10-01 15:43:40 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2004-10-01 15:43:40 +0000
commit392b187a214272937557af695692b6586375cc66 (patch)
treef275a396abf0bf7bc8c58219905fef86444cb47d /contrib/intagg
parentb3f2f6ebec374012bd25ad5acda196d27c33e29a (diff)
downloadpostgresql-392b187a214272937557af695692b6586375cc66.tar.gz
Remove DROPs from contrib object creation scripts, per Dave Page.
Diffstat (limited to 'contrib/intagg')
-rw-r--r--contrib/intagg/int_aggregate.sql.in3
1 files changed, 1 insertions, 2 deletions
diff --git a/contrib/intagg/int_aggregate.sql.in b/contrib/intagg/int_aggregate.sql.in
index 31279c5b33..8a7d9b3238 100644
--- a/contrib/intagg/int_aggregate.sql.in
+++ b/contrib/intagg/int_aggregate.sql.in
@@ -15,9 +15,8 @@ RETURNS int4[]
AS 'MODULE_PATHNAME','int_agg_final_array'
LANGUAGE 'C' IMMUTABLE STRICT;
--- The aggration funcion.
+-- The aggregate function itself
-- uses the above functions to create an array of integers from an aggregation.
-DROP AGGREGATE int_array_aggregate(int4);
CREATE AGGREGATE int_array_aggregate (
BASETYPE = int4,
SFUNC = int_agg_state,