d...@oakstreetsoftware.com writes:
> in the interest of simplicity, I've got a view that calls a stored procedure
> to compute a value ...
> create view testv as select tt.field1, tt.intfield, compute_val(tt.field1)
> AS compute1 from tt;
> If compute_val() selects sum(intfield) from the testv vi
The following bug has been logged on the website:
Bug reference: 7786
Logged by: Douglas Toltzman
Email address: d...@oakstreetsoftware.com
PostgreSQL version: 9.2.2
Operating system: Linux CentOS
Description:
in the interest of simplicity, I've got a view that calls