]> granicus.if.org Git - postgresql/commitdiff
Fix final function for cash avg() aggregate.
authorThomas G. Lockhart <lockhart@fourpalms.org>
Wed, 15 Oct 1997 01:08:25 +0000 (01:08 +0000)
committerThomas G. Lockhart <lockhart@fourpalms.org>
Wed, 15 Oct 1997 01:08:25 +0000 (01:08 +0000)
 Wrong function referenced in previous versions.

src/include/catalog/pg_aggregate.h

index c95e24663f48523fd364d28a2d9a4815f2def039..c093dd9a9803dd67b88ad48408717341f88c875f 100644 (file)
@@ -7,7 +7,7 @@
  *
  * Copyright (c) 1994, Regents of the University of California
  *
- * $Id: pg_aggregate.h,v 1.11 1997/09/08 21:51:27 momjian Exp $
+ * $Id: pg_aggregate.h,v 1.12 1997/10/15 01:08:25 thomas Exp $
  *
  * NOTES
  *       the genbki.sh script reads this file and generates .bki
@@ -88,12 +88,12 @@ typedef FormData_pg_aggregate *Form_pg_aggregate;
  * ---------------
  */
 
-DATA(insert OID = 0 ( avg      PGUID int4pl   int4inc   int4div         23   23   23   23 _null_ 0 ));
-DATA(insert OID = 0 ( avg      PGUID int2pl   int2inc   int2div         21   21   21   21 _null_ 0 ));
-DATA(insert OID = 0 ( avg      PGUID float4pl float4inc float4div      700  700  700  700 _null_ 0.0 ));
-DATA(insert OID = 0 ( avg      PGUID float8pl float8inc float8div      701  701  701  701 _null_ 0.0 ));
-DATA(insert OID = 0 ( avg      PGUID cash_pl  float8inc cash_div       790  790  701  790 _null_ 0.0 ));
-DATA(insert OID = 0 ( avg      PGUID timespan_pl  float8inc timespan_div       1186  1186      701  1186 _null_ 0.0 ));
+DATA(insert OID = 0 ( avg      PGUID int4pl      int4inc   int4div         23   23   23   23 _null_ 0 ));
+DATA(insert OID = 0 ( avg      PGUID int2pl      int2inc   int2div         21   21   21   21 _null_ 0 ));
+DATA(insert OID = 0 ( avg      PGUID float4pl    float4inc float4div      700  700  700  700 _null_ 0.0 ));
+DATA(insert OID = 0 ( avg      PGUID float8pl    float8inc float8div      701  701  701  701 _null_ 0.0 ));
+DATA(insert OID = 0 ( avg      PGUID cash_pl     float8inc cash_div_flt8  790  790  701  790 _null_ 0.0 ));
+DATA(insert OID = 0 ( avg      PGUID timespan_pl float8inc timespan_div  1186 1186  701 1186 _null_ 0.0 ));
 
 DATA(insert OID = 0 ( sum      PGUID int4pl            - -   23   23 0   23 _null_ _null_ ));
 DATA(insert OID = 0 ( sum      PGUID int2pl            - -   21   21 0   21 _null_ _null_ ));