Thread: CASE statement causes unknown node type 723

CASE statement causes unknown node type 723

From
"Nathan Angelacos"
Date:
On a 
[PostgreSQL 6.5.1 on i586-pc-linux-gnu, compiled by gcc egcs-2.91.66]
(Redhat) system, I get an unknown node type 723 error when trying to 
do a pg_dump on a db, or specifically, trying to select from pg_views 
after creating a view with a CASE statement.

To duplicate: 
in any database (e.g. template1)

=>select * from pg_views         (Returns the expected results)

=>    create view die as 
=>        select 
=>            CASE when usename = 'postgres' then 'something' 
=>                ELSE usename
=>                End
=>            from pg_user;(Creates view 'die')

=>select * from die            (Works fine, but now....)

=>select * from pg_views

root=> select * from pg_views;

ERROR:  get_ruledef of die: unknown node type 723 in      
check_if_rte_used()


Is it a bug, or am I doing something stupid?

Thanks.


Re: [SQL] CASE statement causes unknown node type 723

From
Tom Lane
Date:
"Nathan Angelacos" <nba@fcc.net> writes:
> ERROR:  get_ruledef of die: unknown node type 723 in      
> check_if_rte_used()

> Is it a bug, or am I doing something stupid?

Yeah, it's a known bug.  It only shows up when you try to view
the text of a rule containing a CASE expression.  Will be fixed
for 6.6 ... not sure if it's important enough to back-patch in
6.5.* ...
        regards, tom lane