Re: [BUGS] BUG #4350: 'select' acess given to views containing "union all" even though user has no grants

2008-08-13 Thread Heikki Linnakangas
Tom Lane wrote: Hm, the "Assert(rte->subquery != NULL)" doesn't seem right ... couldn't there be non-RTE_SUBQUERY rtes in the child? I think the original coding was guaranteed to visit only subquery-type RTEs but I'm much less convinced about this one. It might be better to say if (rte-

[BUGS] BUG #4352: Service fails to start when moved from domain to workgroup

2008-08-13 Thread Bhaskar Sirohi
The following bug has been logged online: Bug reference: 4352 Logged by: Bhaskar Sirohi Email address: [EMAIL PROTECTED] PostgreSQL version: 8.3 Operating system: Windows 2003 Server Description:Service fails to start when moved from domain to workgroup Details: It

Re: [BUGS] BUG #4350: 'select' acess given to views containing "union all" even though user has no grants

2008-08-13 Thread Tom Lane
"Heikki Linnakangas" <[EMAIL PROTECTED]> writes: > Tom Lane wrote: >> Hm, the "Assert(rte->subquery != NULL)" doesn't seem right ... >> couldn't there be non-RTE_SUBQUERY rtes in the child? > Oh, indeed it's not okay. The original UNION ALL view is a prime example > of that. I didn't notice becau