BUG #15328: postgres segfaults on ALTER OPERATOR ... SET SCHEMA ...

From: PG Bug reporting form <noreply(at)postgresql(dot)org>
To: pgsql-bugs(at)lists(dot)postgresql(dot)org
Cc: kai(dot)kratz(at)googlemail(dot)com
Subject: BUG #15328: postgres segfaults on ALTER OPERATOR ... SET SCHEMA ...
Date: 2018-08-15 13:41:57
Message-ID: 153434051731.10440.812093472271246276@wrigleys.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs

The following bug has been logged on the website:

Bug reference: 15328
Logged by: Kai Kratz
Email address: kai(dot)kratz(at)googlemail(dot)com
PostgreSQL version: 10.4
Operating system: Ubuntu18.04
Description:

docker-user=# CREATE SCHEMA test_schema;
CREATE SCHEMA
docker-user=# CREATE FUNCTION int_eq(int, int)
RETURNS BOOL
LANGUAGE SQL IMMUTABLE AS
$$
SELECT $1 = $2;
$$;
CREATE FUNCTION
docker-user=# CREATE OPERATOR = (leftarg = int, rightarg = int, procedure =
int_eq);
CREATE OPERATOR
docker-user=# ALTER OPERATOR = (int, int) SET SCHEMA test_schema;
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.
!>

Responses

Browse pgsql-bugs by date

  From Date Subject
Next Message PG Bug reporting form 2018-08-15 13:46:29 BUG #15329: postgres segfaults on ALTER DOMAIN ... SET SCHEMA ...
Previous Message Tom Lane 2018-08-15 13:41:30 Re: BUG #15327: postgres segfaults on ALTER FUNCTION ... SET SCHEMA ...