forked frompostgres/postgres
- Notifications
You must be signed in to change notification settings - Fork6
Commit0263870
committed
Secondly, small problem when trying to create a MAX/MIN aggregate in 1.09.
>From the create_aggregate man page..."The arguments to state-transition-function-1 must be(stype1,basetype), and its return value must be stype1."create aggregate MIN (sfunc1 = int2smaller, basetype = int2, stype1 = int2);will fail becase int2smaller and int2larger are in pg_procas returning an int4. Can't happen since both args have tobe int2.From: Darren King <aixssd!ceodev!darrenk@abs.net>1 parentad6ca0c commit0263870
1 file changed
+3
-3
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
6 | 6 | | |
7 | 7 | | |
8 | 8 | | |
9 | | - | |
| 9 | + | |
10 | 10 | | |
11 | 11 | | |
12 | 12 | | |
| |||
571 | 571 | | |
572 | 572 | | |
573 | 573 | | |
574 | | - | |
575 | | - | |
| 574 | + | |
| 575 | + | |
576 | 576 | | |
577 | 577 | | |
578 | 578 | | |
| |||
0 commit comments
Comments
(0)