BUG #16856: Crash when add "_RETURN" rule on child table - Mailing list pgsql-bugs

From PG Bug reporting form
Subject BUG #16856: Crash when add "_RETURN" rule on child table
Date
Msg-id 16856-0363e05c6e1612fd@postgresql.org
Whole thread Raw
Responses Re: BUG #16856: Crash when add "_RETURN" rule on child table  (Michael Paquier <michael@paquier.xyz>)
List pgsql-bugs
The following bug has been logged on the website:

Bug reference:      16856
Logged by:          Yang Lin
Email address:      todoubaba@gmail.com
PostgreSQL version: 12.5
Operating system:   ubuntu 20.04
Description:

create table parent(a text);
create table child() inherits (parent);
create or replace rule "_RETURN" as
    on select
    to child
    do instead
    select *
    from (values('x')) as t(a);

select * from parent;

The psql crash and report:
server closed the connection unexpectedly
        This probably means the server terminated abnormally
        before or while processing the request.
The connection to the server was lost. Attempting reset: Failed.


pgsql-bugs by date:

Previous
From: Michael Paquier
Date:
Subject: Re: BUG #16854: initdb fails on ReFS and FAT32 file systems
Next
From: Michael Paquier
Date:
Subject: Re: BUG #16856: Crash when add "_RETURN" rule on child table