From: | Alan Li <alanwli(at)gmail(dot)com> |
---|---|
To: | pgsql-hackers <pgsql-hackers(at)postgresql(dot)org> |
Subject: | Backend assertion failure on \d |
Date: | 2009-02-25 07:13:30 |
Message-ID: | bc34668d0902242313p45976219q84aaa526e259eb57@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers |
Running the following against HEAD and REL8_3_6:
create table foo (a varchar(500));
create view bar as select case foo.a when '1' then 'foo' else 'bar' end as
fa from foo;
\d bar
Causes as assertion in the backend:
TRAP: FailedAssertion("!(((((Node*)(((list_head(((OpExpr *)
w)->args))->data.ptr_value)))->type) == T_CaseTestExpr) ||
((((Node*)(((list_head(((OpExpr *) w)->args))->data.ptr_value)))->type) ==
T_Const))", File: "ruleutils.c", Line: 4587
)
LOG: server process (PID 28408) was terminated by signal 6: Aborted
Attached is a simple patch that appears to fix this problem, not sure if it
suffices in general.
Alan
Attachment | Content-Type | Size |
---|---|---|
fix.diff | text/x-patch | 993 bytes |
From | Date | Subject | |
---|---|---|---|
Next Message | Heikki Linnakangas | 2009-02-25 08:18:37 | Re: Service not starting: Error 1053 |
Previous Message | Lawrence, Ramon | 2009-02-25 05:38:40 | Re: Proposed Patch to Improve Performance of Multi-BatchHash Join for Skewed Data Sets |