File tree Expand file tree Collapse file tree 2 files changed +1
-3
lines changed Expand file tree Collapse file tree 2 files changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -15,9 +15,8 @@ RETURNS int4[]
15
15
AS 'MODULE_PATHNAME','int_agg_final_array'
16
16
LANGUAGE 'C' IMMUTABLE STRICT;
17
17
18
- -- The aggration funcion.
18
+ -- The aggregate function itself
19
19
-- uses the above functions to create an array of integers from an aggregation.
20
- DROP AGGREGATE int_array_aggregate(int4);
21
20
CREATE AGGREGATE int_array_aggregate (
22
21
BASETYPE = int4,
23
22
SFUNC = int_agg_state,
Original file line number Diff line number Diff line change 1
1
-- Adjust this setting to control where the objects get created.
2
2
SET search_path = public;
3
3
4
- DROP TYPE pgstattuple_type CASCADE;
5
4
CREATE TYPE pgstattuple_type AS (
6
5
table_len BIGINT, -- physical table length in bytes
7
6
tuple_count BIGINT, -- number of live tuples
You can’t perform that action at this time.
0 commit comments