@ -34,6 +34,8 @@
* aggtransfn transition function
* aggtransfn transition function
* aggfinalfn final function ( 0 if none )
* aggfinalfn final function ( 0 if none )
* aggcombinefn combine function ( 0 if none )
* aggcombinefn combine function ( 0 if none )
* aggserialfn function to convert transtype to serialtype ( 0 if none )
* aggdeserialfn function to convert serialtype to transtype ( 0 if none )
* aggmtransfn forward function for moving - aggregate mode ( 0 if none )
* aggmtransfn forward function for moving - aggregate mode ( 0 if none )
* aggminvtransfn inverse function for moving - aggregate mode ( 0 if none )
* aggminvtransfn inverse function for moving - aggregate mode ( 0 if none )
* aggmfinalfn final function for moving - aggregate mode ( 0 if none )
* aggmfinalfn final function for moving - aggregate mode ( 0 if none )
@ -43,6 +45,7 @@
* aggtranstype type of aggregate ' s transition ( state ) data
* aggtranstype type of aggregate ' s transition ( state ) data
* aggtransspace estimated size of state data ( 0 for default estimate )
* aggtransspace estimated size of state data ( 0 for default estimate )
* aggmtranstype type of moving - aggregate state data ( 0 if none )
* aggmtranstype type of moving - aggregate state data ( 0 if none )
* aggserialtype datatype to serialize state to . ( 0 if none )
* aggmtransspace estimated size of moving - agg state ( 0 for default est )
* aggmtransspace estimated size of moving - agg state ( 0 for default est )
* agginitval initial value for transition state ( can be NULL )
* agginitval initial value for transition state ( can be NULL )
* aggminitval initial value for moving - agg state ( can be NULL )
* aggminitval initial value for moving - agg state ( can be NULL )
@ -58,6 +61,8 @@ CATALOG(pg_aggregate,2600) BKI_WITHOUT_OIDS
regproc aggtransfn ;
regproc aggtransfn ;
regproc aggfinalfn ;
regproc aggfinalfn ;
regproc aggcombinefn ;
regproc aggcombinefn ;
regproc aggserialfn ;
regproc aggdeserialfn ;
regproc aggmtransfn ;
regproc aggmtransfn ;
regproc aggminvtransfn ;
regproc aggminvtransfn ;
regproc aggmfinalfn ;
regproc aggmfinalfn ;
@ -65,6 +70,7 @@ CATALOG(pg_aggregate,2600) BKI_WITHOUT_OIDS
bool aggmfinalextra ;
bool aggmfinalextra ;
Oid aggsortop ;
Oid aggsortop ;
Oid aggtranstype ;
Oid aggtranstype ;
Oid aggserialtype ;
int32 aggtransspace ;
int32 aggtransspace ;
Oid aggmtranstype ;
Oid aggmtranstype ;
int32 aggmtransspace ;
int32 aggmtransspace ;
@ -87,25 +93,28 @@ typedef FormData_pg_aggregate *Form_pg_aggregate;
* - - - - - - - - - - - - - - - -
* - - - - - - - - - - - - - - - -
*/
*/
# define Natts_pg_aggregate 18
# define Natts_pg_aggregate 2 1
# define Anum_pg_aggregate_aggfnoid 1
# define Anum_pg_aggregate_aggfnoid 1
# define Anum_pg_aggregate_aggkind 2
# define Anum_pg_aggregate_aggkind 2
# define Anum_pg_aggregate_aggnumdirectargs 3
# define Anum_pg_aggregate_aggnumdirectargs 3
# define Anum_pg_aggregate_aggtransfn 4
# define Anum_pg_aggregate_aggtransfn 4
# define Anum_pg_aggregate_aggfinalfn 5
# define Anum_pg_aggregate_aggfinalfn 5
# define Anum_pg_aggregate_aggcombinefn 6
# define Anum_pg_aggregate_aggcombinefn 6
# define Anum_pg_aggregate_aggmtransfn 7
# define Anum_pg_aggregate_aggserialfn 7
# define Anum_pg_aggregate_aggminvtransfn 8
# define Anum_pg_aggregate_aggdeserialfn 8
# define Anum_pg_aggregate_aggmfinalfn 9
# define Anum_pg_aggregate_aggmtransfn 9
# define Anum_pg_aggregate_aggfinalextra 10
# define Anum_pg_aggregate_aggminvtransfn 10
# define Anum_pg_aggregate_aggmfinalextra 11
# define Anum_pg_aggregate_aggmfinalfn 11
# define Anum_pg_aggregate_aggsortop 12
# define Anum_pg_aggregate_aggfinalextra 12
# define Anum_pg_aggregate_aggtranstype 13
# define Anum_pg_aggregate_aggmfinalextra 13
# define Anum_pg_aggregate_aggtransspace 14
# define Anum_pg_aggregate_aggsortop 14
# define Anum_pg_aggregate_aggmtranstype 15
# define Anum_pg_aggregate_aggtranstype 15
# define Anum_pg_aggregate_aggmtransspace 16
# define Anum_pg_aggregate_aggserialtype 16
# define Anum_pg_aggregate_agginitval 17
# define Anum_pg_aggregate_aggtransspace 17
# define Anum_pg_aggregate_aggminitval 18
# define Anum_pg_aggregate_aggmtranstype 18
# define Anum_pg_aggregate_aggmtransspace 19
# define Anum_pg_aggregate_agginitval 20
# define Anum_pg_aggregate_aggminitval 21
/*
/*
* Symbolic values for aggkind column . We distinguish normal aggregates
* Symbolic values for aggkind column . We distinguish normal aggregates
@ -129,184 +138,184 @@ typedef FormData_pg_aggregate *Form_pg_aggregate;
*/
*/
/* avg */
/* avg */
DATA ( insert ( 2100 n 0 int8_avg_accum numeric_poly_avg - int8_avg_accum int8_avg_accum_inv numeric_poly_avg f f 0 2281 48 2281 48 _null_ _null_ ) ) ;
DATA ( insert ( 2100 n 0 int8_avg_accum numeric_poly_avg - - - int8_avg_accum int8_avg_accum_inv numeric_poly_avg f f 0 2281 0 48 2281 48 _null_ _null_ ) ) ;
DATA ( insert ( 2101 n 0 int4_avg_accum int8_avg - int4_avg_accum int4_avg_accum_inv int8_avg f f 0 1016 0 1016 0 " {0,0} " " {0,0} " ) ) ;
DATA ( insert ( 2101 n 0 int4_avg_accum int8_avg - - - int4_avg_accum int4_avg_accum_inv int8_avg f f 0 1016 0 0 1016 0 " {0,0} " " {0,0} " ) ) ;
DATA ( insert ( 2102 n 0 int2_avg_accum int8_avg - int2_avg_accum int2_avg_accum_inv int8_avg f f 0 1016 0 1016 0 " {0,0} " " {0,0} " ) ) ;
DATA ( insert ( 2102 n 0 int2_avg_accum int8_avg - - - int2_avg_accum int2_avg_accum_inv int8_avg f f 0 1016 0 0 1016 0 " {0,0} " " {0,0} " ) ) ;
DATA ( insert ( 2103 n 0 numeric_avg_accum numeric_avg - numeric_avg_accum numeric_accum_inv numeric_avg f f 0 2281 128 2281 128 _null_ _null_ ) ) ;
DATA ( insert ( 2103 n 0 numeric_avg_accum numeric_avg - - - numeric_avg_accum numeric_accum_inv numeric_avg f f 0 2281 0 128 2281 128 _null_ _null_ ) ) ;
DATA ( insert ( 2104 n 0 float4_accum float8_avg - - - - f f 0 1022 0 0 0 " {0,0,0} " _null_ ) ) ;
DATA ( insert ( 2104 n 0 float4_accum float8_avg - - - - - - f f 0 1022 0 0 0 0 " {0,0,0} " _null_ ) ) ;
DATA ( insert ( 2105 n 0 float8_accum float8_avg - - - - f f 0 1022 0 0 0 " {0,0,0} " _null_ ) ) ;
DATA ( insert ( 2105 n 0 float8_accum float8_avg - - - - - - f f 0 1022 0 0 0 0 " {0,0,0} " _null_ ) ) ;
DATA ( insert ( 2106 n 0 interval_accum interval_avg - interval_accum interval_accum_inv interval_avg f f 0 1187 0 1187 0 " {0 second,0 second} " " {0 second,0 second} " ) ) ;
DATA ( insert ( 2106 n 0 interval_accum interval_avg - - - interval_accum interval_accum_inv interval_avg f f 0 1187 0 0 1187 0 " {0 second,0 second} " " {0 second,0 second} " ) ) ;
/* sum */
/* sum */
DATA ( insert ( 2107 n 0 int8_avg_accum numeric_poly_sum - int8_avg_accum int8_avg_accum_inv numeric_poly_sum f f 0 2281 48 2281 48 _null_ _null_ ) ) ;
DATA ( insert ( 2107 n 0 int8_avg_accum numeric_poly_sum - - - int8_avg_accum int8_avg_accum_inv numeric_poly_sum f f 0 2281 0 48 2281 48 _null_ _null_ ) ) ;
DATA ( insert ( 2108 n 0 int4_sum - int8pl int4_avg_accum int4_avg_accum_inv int2int4_sum f f 0 20 0 1016 0 _null_ " {0,0} " ) ) ;
DATA ( insert ( 2108 n 0 int4_sum - int8pl - - int4_avg_accum int4_avg_accum_inv int2int4_sum f f 0 20 0 0 1016 0 _null_ " {0,0} " ) ) ;
DATA ( insert ( 2109 n 0 int2_sum - int8pl int2_avg_accum int2_avg_accum_inv int2int4_sum f f 0 20 0 1016 0 _null_ " {0,0} " ) ) ;
DATA ( insert ( 2109 n 0 int2_sum - int8pl - - int2_avg_accum int2_avg_accum_inv int2int4_sum f f 0 20 0 0 1016 0 _null_ " {0,0} " ) ) ;
DATA ( insert ( 2110 n 0 float4pl - float4pl - - - f f 0 700 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2110 n 0 float4pl - float4pl - - - - - f f 0 700 0 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2111 n 0 float8pl - float8pl - - - f f 0 701 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2111 n 0 float8pl - float8pl - - - - - f f 0 701 0 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2112 n 0 cash_pl - cash_pl cash_pl cash_mi - f f 0 790 0 790 0 _null_ _null_ ) ) ;
DATA ( insert ( 2112 n 0 cash_pl - cash_pl - - cash_pl cash_mi - f f 0 790 0 0 790 0 _null_ _null_ ) ) ;
DATA ( insert ( 2113 n 0 interval_pl - interval_pl interval_pl interval_mi - f f 0 1186 0 1186 0 _null_ _null_ ) ) ;
DATA ( insert ( 2113 n 0 interval_pl - interval_pl - - interval_pl interval_mi - f f 0 1186 0 0 1186 0 _null_ _null_ ) ) ;
DATA ( insert ( 2114 n 0 numeric_avg_accum numeric_sum - numeric_avg_accum numeric_accum_inv numeric_sum f f 0 2281 128 2281 128 _null_ _null_ ) ) ;
DATA ( insert ( 2114 n 0 numeric_avg_accum numeric_sum - - - numeric_avg_accum numeric_accum_inv numeric_sum f f 0 2281 0 128 2281 128 _null_ _null_ ) ) ;
/* max */
/* max */
DATA ( insert ( 2115 n 0 int8larger - int8larger - - - f f 413 20 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2115 n 0 int8larger - int8larger - - - - - f f 413 20 0 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2116 n 0 int4larger - int4larger - - - f f 521 23 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2116 n 0 int4larger - int4larger - - - - - f f 521 23 0 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2117 n 0 int2larger - int2larger - - - f f 520 21 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2117 n 0 int2larger - int2larger - - - - - f f 520 21 0 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2118 n 0 oidlarger - oidlarger - - - f f 610 26 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2118 n 0 oidlarger - oidlarger - - - - - f f 610 26 0 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2119 n 0 float4larger - float4larger - - - f f 623 700 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2119 n 0 float4larger - float4larger - - - - - f f 623 700 0 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2120 n 0 float8larger - float8larger - - - f f 674 701 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2120 n 0 float8larger - float8larger - - - - - f f 674 701 0 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2121 n 0 int4larger - int4larger - - - f f 563 702 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2121 n 0 int4larger - int4larger - - - - - f f 563 702 0 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2122 n 0 date_larger - date_larger - - - f f 1097 1082 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2122 n 0 date_larger - date_larger - - - - - f f 1097 1082 0 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2123 n 0 time_larger - time_larger - - - f f 1112 1083 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2123 n 0 time_larger - time_larger - - - - - f f 1112 1083 0 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2124 n 0 timetz_larger - timetz_larger - - - f f 1554 1266 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2124 n 0 timetz_larger - timetz_larger - - - - - f f 1554 1266 0 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2125 n 0 cashlarger - cashlarger - - - f f 903 790 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2125 n 0 cashlarger - cashlarger - - - - - f f 903 790 0 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2126 n 0 timestamp_larger - timestamp_larger - - - f f 2064 1114 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2126 n 0 timestamp_larger - timestamp_larger - - - - - f f 2064 1114 0 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2127 n 0 timestamptz_larger - timestamptz_larger - - - f f 1324 1184 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2127 n 0 timestamptz_larger - timestamptz_larger - - - - - f f 1324 1184 0 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2128 n 0 interval_larger - interval_larger - - - f f 1334 1186 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2128 n 0 interval_larger - interval_larger - - - - - f f 1334 1186 0 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2129 n 0 text_larger - text_larger - - - f f 666 25 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2129 n 0 text_larger - text_larger - - - - - f f 666 25 0 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2130 n 0 numeric_larger - numeric_larger - - - f f 1756 1700 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2130 n 0 numeric_larger - numeric_larger - - - - - f f 1756 1700 0 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2050 n 0 array_larger - array_larger - - - f f 1073 2277 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2050 n 0 array_larger - array_larger - - - - - f f 1073 2277 0 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2244 n 0 bpchar_larger - bpchar_larger - - - f f 1060 1042 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2244 n 0 bpchar_larger - bpchar_larger - - - - - f f 1060 1042 0 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2797 n 0 tidlarger - tidlarger - - - f f 2800 27 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2797 n 0 tidlarger - tidlarger - - - - - f f 2800 27 0 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 3526 n 0 enum_larger - enum_larger - - - f f 3519 3500 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 3526 n 0 enum_larger - enum_larger - - - - - f f 3519 3500 0 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 3564 n 0 network_larger - network_larger - - - f f 1205 869 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 3564 n 0 network_larger - network_larger - - - - - f f 1205 869 0 0 0 0 _null_ _null_ ) ) ;
/* min */
/* min */
DATA ( insert ( 2131 n 0 int8smaller - int8smaller - - - f f 412 20 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2131 n 0 int8smaller - int8smaller - - - - - f f 412 20 0 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2132 n 0 int4smaller - int4smaller - - - f f 97 23 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2132 n 0 int4smaller - int4smaller - - - - - f f 97 23 0 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2133 n 0 int2smaller - int2smaller - - - f f 95 21 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2133 n 0 int2smaller - int2smaller - - - - - f f 95 21 0 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2134 n 0 oidsmaller - oidsmaller - - - f f 609 26 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2134 n 0 oidsmaller - oidsmaller - - - - - f f 609 26 0 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2135 n 0 float4smaller - float4smaller - - - f f 622 700 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2135 n 0 float4smaller - float4smaller - - - - - f f 622 700 0 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2136 n 0 float8smaller - float8smaller - - - f f 672 701 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2136 n 0 float8smaller - float8smaller - - - - - f f 672 701 0 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2137 n 0 int4smaller - int4smaller - - - f f 562 702 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2137 n 0 int4smaller - int4smaller - - - - - f f 562 702 0 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2138 n 0 date_smaller - date_smaller - - - f f 1095 1082 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2138 n 0 date_smaller - date_smaller - - - - - f f 1095 1082 0 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2139 n 0 time_smaller - time_smaller - - - f f 1110 1083 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2139 n 0 time_smaller - time_smaller - - - - - f f 1110 1083 0 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2140 n 0 timetz_smaller - timetz_smaller - - - f f 1552 1266 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2140 n 0 timetz_smaller - timetz_smaller - - - - - f f 1552 1266 0 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2141 n 0 cashsmaller - cashsmaller - - - f f 902 790 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2141 n 0 cashsmaller - cashsmaller - - - - - f f 902 790 0 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2142 n 0 timestamp_smaller - timestamp_smaller - - - f f 2062 1114 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2142 n 0 timestamp_smaller - timestamp_smaller - - - - - f f 2062 1114 0 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2143 n 0 timestamptz_smaller - timestamptz_smaller - - - f f 1322 1184 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2143 n 0 timestamptz_smaller - timestamptz_smaller - - - - - f f 1322 1184 0 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2144 n 0 interval_smaller - interval_smaller - - - f f 1332 1186 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2144 n 0 interval_smaller - interval_smaller - - - - - f f 1332 1186 0 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2145 n 0 text_smaller - text_smaller - - - f f 664 25 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2145 n 0 text_smaller - text_smaller - - - - - f f 664 25 0 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2146 n 0 numeric_smaller - numeric_smaller - - - f f 1754 1700 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2146 n 0 numeric_smaller - numeric_smaller - - - - - f f 1754 1700 0 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2051 n 0 array_smaller - array_smaller - - - f f 1072 2277 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2051 n 0 array_smaller - array_smaller - - - - - f f 1072 2277 0 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2245 n 0 bpchar_smaller - bpchar_smaller - - - f f 1058 1042 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2245 n 0 bpchar_smaller - bpchar_smaller - - - - - f f 1058 1042 0 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2798 n 0 tidsmaller - tidsmaller - - - f f 2799 27 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2798 n 0 tidsmaller - tidsmaller - - - - - f f 2799 27 0 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 3527 n 0 enum_smaller - enum_smaller - - - f f 3518 3500 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 3527 n 0 enum_smaller - enum_smaller - - - - - f f 3518 3500 0 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 3565 n 0 network_smaller - network_smaller - - - f f 1203 869 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 3565 n 0 network_smaller - network_smaller - - - - - f f 1203 869 0 0 0 0 _null_ _null_ ) ) ;
/* count */
/* count */
DATA ( insert ( 2147 n 0 int8inc_any - int8pl int8inc_any int8dec_any - f f 0 20 0 20 0 " 0 " " 0 " ) ) ;
DATA ( insert ( 2147 n 0 int8inc_any - int8pl - - int8inc_any int8dec_any - f f 0 20 0 0 20 0 " 0 " " 0 " ) ) ;
DATA ( insert ( 2803 n 0 int8inc - int8pl int8inc int8dec - f f 0 20 0 20 0 " 0 " " 0 " ) ) ;
DATA ( insert ( 2803 n 0 int8inc - int8pl - - int8inc int8dec - f f 0 20 0 0 20 0 " 0 " " 0 " ) ) ;
/* var_pop */
/* var_pop */
DATA ( insert ( 2718 n 0 int8_accum numeric_var_pop - int8_accum int8_accum_inv numeric_var_pop f f 0 2281 128 2281 128 _null_ _null_ ) ) ;
DATA ( insert ( 2718 n 0 int8_accum numeric_var_pop - - - int8_accum int8_accum_inv numeric_var_pop f f 0 2281 0 128 2281 128 _null_ _null_ ) ) ;
DATA ( insert ( 2719 n 0 int4_accum numeric_poly_var_pop - int4_accum int4_accum_inv numeric_poly_var_pop f f 0 2281 48 2281 48 _null_ _null_ ) ) ;
DATA ( insert ( 2719 n 0 int4_accum numeric_poly_var_pop - - - int4_accum int4_accum_inv numeric_poly_var_pop f f 0 2281 0 48 2281 48 _null_ _null_ ) ) ;
DATA ( insert ( 2720 n 0 int2_accum numeric_poly_var_pop - int2_accum int2_accum_inv numeric_poly_var_pop f f 0 2281 48 2281 48 _null_ _null_ ) ) ;
DATA ( insert ( 2720 n 0 int2_accum numeric_poly_var_pop - - - int2_accum int2_accum_inv numeric_poly_var_pop f f 0 2281 0 48 2281 48 _null_ _null_ ) ) ;
DATA ( insert ( 2721 n 0 float4_accum float8_var_pop - - - - f f 0 1022 0 0 0 " {0,0,0} " _null_ ) ) ;
DATA ( insert ( 2721 n 0 float4_accum float8_var_pop - - - - - - f f 0 1022 0 0 0 0 " {0,0,0} " _null_ ) ) ;
DATA ( insert ( 2722 n 0 float8_accum float8_var_pop - - - - f f 0 1022 0 0 0 " {0,0,0} " _null_ ) ) ;
DATA ( insert ( 2722 n 0 float8_accum float8_var_pop - - - - - - f f 0 1022 0 0 0 0 " {0,0,0} " _null_ ) ) ;
DATA ( insert ( 2723 n 0 numeric_accum numeric_var_pop - numeric_accum numeric_accum_inv numeric_var_pop f f 0 2281 128 2281 128 _null_ _null_ ) ) ;
DATA ( insert ( 2723 n 0 numeric_accum numeric_var_pop - - - numeric_accum numeric_accum_inv numeric_var_pop f f 0 2281 0 128 2281 128 _null_ _null_ ) ) ;
/* var_samp */
/* var_samp */
DATA ( insert ( 2641 n 0 int8_accum numeric_var_samp - int8_accum int8_accum_inv numeric_var_samp f f 0 2281 128 2281 128 _null_ _null_ ) ) ;
DATA ( insert ( 2641 n 0 int8_accum numeric_var_samp - - - int8_accum int8_accum_inv numeric_var_samp f f 0 2281 0 128 2281 128 _null_ _null_ ) ) ;
DATA ( insert ( 2642 n 0 int4_accum numeric_poly_var_samp - int4_accum int4_accum_inv numeric_poly_var_samp f f 0 2281 48 2281 48 _null_ _null_ ) ) ;
DATA ( insert ( 2642 n 0 int4_accum numeric_poly_var_samp - - - int4_accum int4_accum_inv numeric_poly_var_samp f f 0 2281 0 48 2281 48 _null_ _null_ ) ) ;
DATA ( insert ( 2643 n 0 int2_accum numeric_poly_var_samp - int2_accum int2_accum_inv numeric_poly_var_samp f f 0 2281 48 2281 48 _null_ _null_ ) ) ;
DATA ( insert ( 2643 n 0 int2_accum numeric_poly_var_samp - - - int2_accum int2_accum_inv numeric_poly_var_samp f f 0 2281 0 48 2281 48 _null_ _null_ ) ) ;
DATA ( insert ( 2644 n 0 float4_accum float8_var_samp - - - - f f 0 1022 0 0 0 " {0,0,0} " _null_ ) ) ;
DATA ( insert ( 2644 n 0 float4_accum float8_var_samp - - - - - - f f 0 1022 0 0 0 0 " {0,0,0} " _null_ ) ) ;
DATA ( insert ( 2645 n 0 float8_accum float8_var_samp - - - - f f 0 1022 0 0 0 " {0,0,0} " _null_ ) ) ;
DATA ( insert ( 2645 n 0 float8_accum float8_var_samp - - - - - - f f 0 1022 0 0 0 0 " {0,0,0} " _null_ ) ) ;
DATA ( insert ( 2646 n 0 numeric_accum numeric_var_samp - numeric_accum numeric_accum_inv numeric_var_samp f f 0 2281 128 2281 128 _null_ _null_ ) ) ;
DATA ( insert ( 2646 n 0 numeric_accum numeric_var_samp - - - numeric_accum numeric_accum_inv numeric_var_samp f f 0 2281 0 128 2281 128 _null_ _null_ ) ) ;
/* variance: historical Postgres syntax for var_samp */
/* variance: historical Postgres syntax for var_samp */
DATA ( insert ( 2148 n 0 int8_accum numeric_var_samp - int8_accum int8_accum_inv numeric_var_samp f f 0 2281 128 2281 128 _null_ _null_ ) ) ;
DATA ( insert ( 2148 n 0 int8_accum numeric_var_samp - - - int8_accum int8_accum_inv numeric_var_samp f f 0 2281 0 128 2281 128 _null_ _null_ ) ) ;
DATA ( insert ( 2149 n 0 int4_accum numeric_poly_var_samp - int4_accum int4_accum_inv numeric_poly_var_samp f f 0 2281 48 2281 48 _null_ _null_ ) ) ;
DATA ( insert ( 2149 n 0 int4_accum numeric_poly_var_samp - - - int4_accum int4_accum_inv numeric_poly_var_samp f f 0 2281 0 48 2281 48 _null_ _null_ ) ) ;
DATA ( insert ( 2150 n 0 int2_accum numeric_poly_var_samp - int2_accum int2_accum_inv numeric_poly_var_samp f f 0 2281 48 2281 48 _null_ _null_ ) ) ;
DATA ( insert ( 2150 n 0 int2_accum numeric_poly_var_samp - - - int2_accum int2_accum_inv numeric_poly_var_samp f f 0 2281 0 48 2281 48 _null_ _null_ ) ) ;
DATA ( insert ( 2151 n 0 float4_accum float8_var_samp - - - - f f 0 1022 0 0 0 " {0,0,0} " _null_ ) ) ;
DATA ( insert ( 2151 n 0 float4_accum float8_var_samp - - - - - - f f 0 1022 0 0 0 0 " {0,0,0} " _null_ ) ) ;
DATA ( insert ( 2152 n 0 float8_accum float8_var_samp - - - - f f 0 1022 0 0 0 " {0,0,0} " _null_ ) ) ;
DATA ( insert ( 2152 n 0 float8_accum float8_var_samp - - - - - - f f 0 1022 0 0 0 0 " {0,0,0} " _null_ ) ) ;
DATA ( insert ( 2153 n 0 numeric_accum numeric_var_samp - numeric_accum numeric_accum_inv numeric_var_samp f f 0 2281 128 2281 128 _null_ _null_ ) ) ;
DATA ( insert ( 2153 n 0 numeric_accum numeric_var_samp - - - numeric_accum numeric_accum_inv numeric_var_samp f f 0 2281 0 128 2281 128 _null_ _null_ ) ) ;
/* stddev_pop */
/* stddev_pop */
DATA ( insert ( 2724 n 0 int8_accum numeric_stddev_pop - int8_accum int8_accum_inv numeric_stddev_pop f f 0 2281 128 2281 128 _null_ _null_ ) ) ;
DATA ( insert ( 2724 n 0 int8_accum numeric_stddev_pop - - - int8_accum int8_accum_inv numeric_stddev_pop f f 0 2281 0 128 2281 128 _null_ _null_ ) ) ;
DATA ( insert ( 2725 n 0 int4_accum numeric_poly_stddev_pop - int4_accum int4_accum_inv numeric_poly_stddev_pop f f 0 2281 48 2281 48 _null_ _null_ ) ) ;
DATA ( insert ( 2725 n 0 int4_accum numeric_poly_stddev_pop - - - int4_accum int4_accum_inv numeric_poly_stddev_pop f f 0 2281 0 48 2281 48 _null_ _null_ ) ) ;
DATA ( insert ( 2726 n 0 int2_accum numeric_poly_stddev_pop - int2_accum int2_accum_inv numeric_poly_stddev_pop f f 0 2281 48 2281 48 _null_ _null_ ) ) ;
DATA ( insert ( 2726 n 0 int2_accum numeric_poly_stddev_pop - - - int2_accum int2_accum_inv numeric_poly_stddev_pop f f 0 2281 0 48 2281 48 _null_ _null_ ) ) ;
DATA ( insert ( 2727 n 0 float4_accum float8_stddev_pop - - - - f f 0 1022 0 0 0 " {0,0,0} " _null_ ) ) ;
DATA ( insert ( 2727 n 0 float4_accum float8_stddev_pop - - - - - - f f 0 1022 0 0 0 0 " {0,0,0} " _null_ ) ) ;
DATA ( insert ( 2728 n 0 float8_accum float8_stddev_pop - - - - f f 0 1022 0 0 0 " {0,0,0} " _null_ ) ) ;
DATA ( insert ( 2728 n 0 float8_accum float8_stddev_pop - - - - - - f f 0 1022 0 0 0 0 " {0,0,0} " _null_ ) ) ;
DATA ( insert ( 2729 n 0 numeric_accum numeric_stddev_pop - numeric_accum numeric_accum_inv numeric_stddev_pop f f 0 2281 128 2281 128 _null_ _null_ ) ) ;
DATA ( insert ( 2729 n 0 numeric_accum numeric_stddev_pop - - - numeric_accum numeric_accum_inv numeric_stddev_pop f f 0 2281 0 128 2281 128 _null_ _null_ ) ) ;
/* stddev_samp */
/* stddev_samp */
DATA ( insert ( 2712 n 0 int8_accum numeric_stddev_samp - int8_accum int8_accum_inv numeric_stddev_samp f f 0 2281 128 2281 128 _null_ _null_ ) ) ;
DATA ( insert ( 2712 n 0 int8_accum numeric_stddev_samp - - - int8_accum int8_accum_inv numeric_stddev_samp f f 0 2281 0 128 2281 128 _null_ _null_ ) ) ;
DATA ( insert ( 2713 n 0 int4_accum numeric_poly_stddev_samp - int4_accum int4_accum_inv numeric_poly_stddev_samp f f 0 2281 48 2281 48 _null_ _null_ ) ) ;
DATA ( insert ( 2713 n 0 int4_accum numeric_poly_stddev_samp - - - int4_accum int4_accum_inv numeric_poly_stddev_samp f f 0 2281 0 48 2281 48 _null_ _null_ ) ) ;
DATA ( insert ( 2714 n 0 int2_accum numeric_poly_stddev_samp - int2_accum int2_accum_inv numeric_poly_stddev_samp f f 0 2281 48 2281 48 _null_ _null_ ) ) ;
DATA ( insert ( 2714 n 0 int2_accum numeric_poly_stddev_samp - - - int2_accum int2_accum_inv numeric_poly_stddev_samp f f 0 2281 0 48 2281 48 _null_ _null_ ) ) ;
DATA ( insert ( 2715 n 0 float4_accum float8_stddev_samp - - - - f f 0 1022 0 0 0 " {0,0,0} " _null_ ) ) ;
DATA ( insert ( 2715 n 0 float4_accum float8_stddev_samp - - - - - - f f 0 1022 0 0 0 0 " {0,0,0} " _null_ ) ) ;
DATA ( insert ( 2716 n 0 float8_accum float8_stddev_samp - - - - f f 0 1022 0 0 0 " {0,0,0} " _null_ ) ) ;
DATA ( insert ( 2716 n 0 float8_accum float8_stddev_samp - - - - - - f f 0 1022 0 0 0 0 " {0,0,0} " _null_ ) ) ;
DATA ( insert ( 2717 n 0 numeric_accum numeric_stddev_samp - numeric_accum numeric_accum_inv numeric_stddev_samp f f 0 2281 128 2281 128 _null_ _null_ ) ) ;
DATA ( insert ( 2717 n 0 numeric_accum numeric_stddev_samp - - - numeric_accum numeric_accum_inv numeric_stddev_samp f f 0 2281 0 128 2281 128 _null_ _null_ ) ) ;
/* stddev: historical Postgres syntax for stddev_samp */
/* stddev: historical Postgres syntax for stddev_samp */
DATA ( insert ( 2154 n 0 int8_accum numeric_stddev_samp - int8_accum int8_accum_inv numeric_stddev_samp f f 0 2281 128 2281 128 _null_ _null_ ) ) ;
DATA ( insert ( 2154 n 0 int8_accum numeric_stddev_samp - - - int8_accum int8_accum_inv numeric_stddev_samp f f 0 2281 0 128 2281 128 _null_ _null_ ) ) ;
DATA ( insert ( 2155 n 0 int4_accum numeric_poly_stddev_samp - int4_accum int4_accum_inv numeric_poly_stddev_samp f f 0 2281 48 2281 48 _null_ _null_ ) ) ;
DATA ( insert ( 2155 n 0 int4_accum numeric_poly_stddev_samp - - - int4_accum int4_accum_inv numeric_poly_stddev_samp f f 0 2281 0 48 2281 48 _null_ _null_ ) ) ;
DATA ( insert ( 2156 n 0 int2_accum numeric_poly_stddev_samp - int2_accum int2_accum_inv numeric_poly_stddev_samp f f 0 2281 48 2281 48 _null_ _null_ ) ) ;
DATA ( insert ( 2156 n 0 int2_accum numeric_poly_stddev_samp - - - int2_accum int2_accum_inv numeric_poly_stddev_samp f f 0 2281 0 48 2281 48 _null_ _null_ ) ) ;
DATA ( insert ( 2157 n 0 float4_accum float8_stddev_samp - - - - f f 0 1022 0 0 0 " {0,0,0} " _null_ ) ) ;
DATA ( insert ( 2157 n 0 float4_accum float8_stddev_samp - - - - - - f f 0 1022 0 0 0 0 " {0,0,0} " _null_ ) ) ;
DATA ( insert ( 2158 n 0 float8_accum float8_stddev_samp - - - - f f 0 1022 0 0 0 " {0,0,0} " _null_ ) ) ;
DATA ( insert ( 2158 n 0 float8_accum float8_stddev_samp - - - - - - f f 0 1022 0 0 0 0 " {0,0,0} " _null_ ) ) ;
DATA ( insert ( 2159 n 0 numeric_accum numeric_stddev_samp - numeric_accum numeric_accum_inv numeric_stddev_samp f f 0 2281 128 2281 128 _null_ _null_ ) ) ;
DATA ( insert ( 2159 n 0 numeric_accum numeric_stddev_samp - - - numeric_accum numeric_accum_inv numeric_stddev_samp f f 0 2281 0 128 2281 128 _null_ _null_ ) ) ;
/* SQL2003 binary regression aggregates */
/* SQL2003 binary regression aggregates */
DATA ( insert ( 2818 n 0 int8inc_float8_float8 - - - - - f f 0 20 0 0 0 " 0 " _null_ ) ) ;
DATA ( insert ( 2818 n 0 int8inc_float8_float8 - - - - - - - f f 0 20 0 0 0 0 " 0 " _null_ ) ) ;
DATA ( insert ( 2819 n 0 float8_regr_accum float8_regr_sxx - - - - f f 0 1022 0 0 0 " {0,0,0,0,0,0} " _null_ ) ) ;
DATA ( insert ( 2819 n 0 float8_regr_accum float8_regr_sxx - - - - - - f f 0 1022 0 0 0 0 " {0,0,0,0,0,0} " _null_ ) ) ;
DATA ( insert ( 2820 n 0 float8_regr_accum float8_regr_syy - - - - f f 0 1022 0 0 0 " {0,0,0,0,0,0} " _null_ ) ) ;
DATA ( insert ( 2820 n 0 float8_regr_accum float8_regr_syy - - - - - - f f 0 1022 0 0 0 0 " {0,0,0,0,0,0} " _null_ ) ) ;
DATA ( insert ( 2821 n 0 float8_regr_accum float8_regr_sxy - - - - f f 0 1022 0 0 0 " {0,0,0,0,0,0} " _null_ ) ) ;
DATA ( insert ( 2821 n 0 float8_regr_accum float8_regr_sxy - - - - - - f f 0 1022 0 0 0 0 " {0,0,0,0,0,0} " _null_ ) ) ;
DATA ( insert ( 2822 n 0 float8_regr_accum float8_regr_avgx - - - - f f 0 1022 0 0 0 " {0,0,0,0,0,0} " _null_ ) ) ;
DATA ( insert ( 2822 n 0 float8_regr_accum float8_regr_avgx - - - - - - f f 0 1022 0 0 0 0 " {0,0,0,0,0,0} " _null_ ) ) ;
DATA ( insert ( 2823 n 0 float8_regr_accum float8_regr_avgy - - - - f f 0 1022 0 0 0 " {0,0,0,0,0,0} " _null_ ) ) ;
DATA ( insert ( 2823 n 0 float8_regr_accum float8_regr_avgy - - - - - - f f 0 1022 0 0 0 0 " {0,0,0,0,0,0} " _null_ ) ) ;
DATA ( insert ( 2824 n 0 float8_regr_accum float8_regr_r2 - - - - f f 0 1022 0 0 0 " {0,0,0,0,0,0} " _null_ ) ) ;
DATA ( insert ( 2824 n 0 float8_regr_accum float8_regr_r2 - - - - - - f f 0 1022 0 0 0 0 " {0,0,0,0,0,0} " _null_ ) ) ;
DATA ( insert ( 2825 n 0 float8_regr_accum float8_regr_slope - - - - f f 0 1022 0 0 0 " {0,0,0,0,0,0} " _null_ ) ) ;
DATA ( insert ( 2825 n 0 float8_regr_accum float8_regr_slope - - - - - - f f 0 1022 0 0 0 0 " {0,0,0,0,0,0} " _null_ ) ) ;
DATA ( insert ( 2826 n 0 float8_regr_accum float8_regr_intercept - - - - f f 0 1022 0 0 0 " {0,0,0,0,0,0} " _null_ ) ) ;
DATA ( insert ( 2826 n 0 float8_regr_accum float8_regr_intercept - - - - - - f f 0 1022 0 0 0 0 " {0,0,0,0,0,0} " _null_ ) ) ;
DATA ( insert ( 2827 n 0 float8_regr_accum float8_covar_pop - - - - f f 0 1022 0 0 0 " {0,0,0,0,0,0} " _null_ ) ) ;
DATA ( insert ( 2827 n 0 float8_regr_accum float8_covar_pop - - - - - - f f 0 1022 0 0 0 0 " {0,0,0,0,0,0} " _null_ ) ) ;
DATA ( insert ( 2828 n 0 float8_regr_accum float8_covar_samp - - - - f f 0 1022 0 0 0 " {0,0,0,0,0,0} " _null_ ) ) ;
DATA ( insert ( 2828 n 0 float8_regr_accum float8_covar_samp - - - - - - f f 0 1022 0 0 0 0 " {0,0,0,0,0,0} " _null_ ) ) ;
DATA ( insert ( 2829 n 0 float8_regr_accum float8_corr - - - - f f 0 1022 0 0 0 " {0,0,0,0,0,0} " _null_ ) ) ;
DATA ( insert ( 2829 n 0 float8_regr_accum float8_corr - - - - - - f f 0 1022 0 0 0 0 " {0,0,0,0,0,0} " _null_ ) ) ;
/* boolean-and and boolean-or */
/* boolean-and and boolean-or */
DATA ( insert ( 2517 n 0 booland_statefunc - - bool_accum bool_accum_inv bool_alltrue f f 58 16 0 2281 16 _null_ _null_ ) ) ;
DATA ( insert ( 2517 n 0 booland_statefunc - - - - bool_accum bool_accum_inv bool_alltrue f f 58 16 0 0 2281 16 _null_ _null_ ) ) ;
DATA ( insert ( 2518 n 0 boolor_statefunc - - bool_accum bool_accum_inv bool_anytrue f f 59 16 0 2281 16 _null_ _null_ ) ) ;
DATA ( insert ( 2518 n 0 boolor_statefunc - - - - bool_accum bool_accum_inv bool_anytrue f f 59 16 0 0 2281 16 _null_ _null_ ) ) ;
DATA ( insert ( 2519 n 0 booland_statefunc - - bool_accum bool_accum_inv bool_alltrue f f 58 16 0 2281 16 _null_ _null_ ) ) ;
DATA ( insert ( 2519 n 0 booland_statefunc - - - - bool_accum bool_accum_inv bool_alltrue f f 58 16 0 0 2281 16 _null_ _null_ ) ) ;
/* bitwise integer */
/* bitwise integer */
DATA ( insert ( 2236 n 0 int2and - int2and - - - f f 0 21 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2236 n 0 int2and - int2and - - - - - f f 0 21 0 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2237 n 0 int2or - int2or - - - f f 0 21 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2237 n 0 int2or - int2or - - - - - f f 0 21 0 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2238 n 0 int4and - int4and - - - f f 0 23 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2238 n 0 int4and - int4and - - - - - f f 0 23 0 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2239 n 0 int4or - int4or - - - f f 0 23 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2239 n 0 int4or - int4or - - - - - f f 0 23 0 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2240 n 0 int8and - int8and - - - f f 0 20 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2240 n 0 int8and - int8and - - - - - f f 0 20 0 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2241 n 0 int8or - int8or - - - f f 0 20 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2241 n 0 int8or - int8or - - - - - f f 0 20 0 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2242 n 0 bitand - bitand - - - f f 0 1560 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2242 n 0 bitand - bitand - - - - - f f 0 1560 0 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2243 n 0 bitor - bitor - - - f f 0 1560 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2243 n 0 bitor - bitor - - - - - f f 0 1560 0 0 0 0 _null_ _null_ ) ) ;
/* xml */
/* xml */
DATA ( insert ( 2901 n 0 xmlconcat2 - - - - - f f 0 142 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2901 n 0 xmlconcat2 - - - - - - - f f 0 142 0 0 0 0 _null_ _null_ ) ) ;
/* array */
/* array */
DATA ( insert ( 2335 n 0 array_agg_transfn array_agg_finalfn - - - - t f 0 2281 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 2335 n 0 array_agg_transfn array_agg_finalfn - - - - - - t f 0 2281 0 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 4053 n 0 array_agg_array_transfn array_agg_array_finalfn - - - - t f 0 2281 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 4053 n 0 array_agg_array_transfn array_agg_array_finalfn - - - - - - t f 0 2281 0 0 0 0 _null_ _null_ ) ) ;
/* text */
/* text */
DATA ( insert ( 3538 n 0 string_agg_transfn string_agg_finalfn - - - - f f 0 2281 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 3538 n 0 string_agg_transfn string_agg_finalfn - - - - - - f f 0 2281 0 0 0 0 _null_ _null_ ) ) ;
/* bytea */
/* bytea */
DATA ( insert ( 3545 n 0 bytea_string_agg_transfn bytea_string_agg_finalfn - - - - f f 0 2281 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 3545 n 0 bytea_string_agg_transfn bytea_string_agg_finalfn - - - - - - f f 0 2281 0 0 0 0 _null_ _null_ ) ) ;
/* json */
/* json */
DATA ( insert ( 3175 n 0 json_agg_transfn json_agg_finalfn - - - - f f 0 2281 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 3175 n 0 json_agg_transfn json_agg_finalfn - - - - - - f f 0 2281 0 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 3197 n 0 json_object_agg_transfn json_object_agg_finalfn - - - - f f 0 2281 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 3197 n 0 json_object_agg_transfn json_object_agg_finalfn - - - - - - f f 0 2281 0 0 0 0 _null_ _null_ ) ) ;
/* jsonb */
/* jsonb */
DATA ( insert ( 3267 n 0 jsonb_agg_transfn jsonb_agg_finalfn - - - - f f 0 2281 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 3267 n 0 jsonb_agg_transfn jsonb_agg_finalfn - - - - - - f f 0 2281 0 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 3270 n 0 jsonb_object_agg_transfn jsonb_object_agg_finalfn - - - - f f 0 2281 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 3270 n 0 jsonb_object_agg_transfn jsonb_object_agg_finalfn - - - - - - f f 0 2281 0 0 0 0 _null_ _null_ ) ) ;
/* ordered-set and hypothetical-set aggregates */
/* ordered-set and hypothetical-set aggregates */
DATA ( insert ( 3972 o 1 ordered_set_transition percentile_disc_final - - - - t f 0 2281 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 3972 o 1 ordered_set_transition percentile_disc_final - - - - - - t f 0 2281 0 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 3974 o 1 ordered_set_transition percentile_cont_float8_final - - - - f f 0 2281 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 3974 o 1 ordered_set_transition percentile_cont_float8_final - - - - - - f f 0 2281 0 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 3976 o 1 ordered_set_transition percentile_cont_interval_final - - - - f f 0 2281 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 3976 o 1 ordered_set_transition percentile_cont_interval_final - - - - - - f f 0 2281 0 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 3978 o 1 ordered_set_transition percentile_disc_multi_final - - - - t f 0 2281 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 3978 o 1 ordered_set_transition percentile_disc_multi_final - - - - - - t f 0 2281 0 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 3980 o 1 ordered_set_transition percentile_cont_float8_multi_final - - - - f f 0 2281 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 3980 o 1 ordered_set_transition percentile_cont_float8_multi_final - - - - - - f f 0 2281 0 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 3982 o 1 ordered_set_transition percentile_cont_interval_multi_final - - - - f f 0 2281 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 3982 o 1 ordered_set_transition percentile_cont_interval_multi_final - - - - - - f f 0 2281 0 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 3984 o 0 ordered_set_transition mode_final - - - - t f 0 2281 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 3984 o 0 ordered_set_transition mode_final - - - - - - t f 0 2281 0 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 3986 h 1 ordered_set_transition_multi rank_final - - - - t f 0 2281 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 3986 h 1 ordered_set_transition_multi rank_final - - - - - - t f 0 2281 0 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 3988 h 1 ordered_set_transition_multi percent_rank_final - - - - t f 0 2281 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 3988 h 1 ordered_set_transition_multi percent_rank_final - - - - - - t f 0 2281 0 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 3990 h 1 ordered_set_transition_multi cume_dist_final - - - - t f 0 2281 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 3990 h 1 ordered_set_transition_multi cume_dist_final - - - - - - t f 0 2281 0 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 3992 h 1 ordered_set_transition_multi dense_rank_final - - - - t f 0 2281 0 0 0 _null_ _null_ ) ) ;
DATA ( insert ( 3992 h 1 ordered_set_transition_multi dense_rank_final - - - - - - t f 0 2281 0 0 0 0 _null_ _null_ ) ) ;
/*
/*
@ -326,6 +335,8 @@ extern ObjectAddress AggregateCreate(const char *aggName,
List * aggtransfnName ,
List * aggtransfnName ,
List * aggfinalfnName ,
List * aggfinalfnName ,
List * aggcombinefnName ,
List * aggcombinefnName ,
List * aggserialfnName ,
List * aggdeserialfnName ,
List * aggmtransfnName ,
List * aggmtransfnName ,
List * aggminvtransfnName ,
List * aggminvtransfnName ,
List * aggmfinalfnName ,
List * aggmfinalfnName ,
@ -333,6 +344,7 @@ extern ObjectAddress AggregateCreate(const char *aggName,
bool mfinalfnExtraArgs ,
bool mfinalfnExtraArgs ,
List * aggsortopName ,
List * aggsortopName ,
Oid aggTransType ,
Oid aggTransType ,
Oid aggSerialType ,
int32 aggTransSpace ,
int32 aggTransSpace ,
Oid aggmTransType ,
Oid aggmTransType ,
int32 aggmTransSpace ,
int32 aggmTransSpace ,