BUG #15956: Server closed unexpectedly for user-defined base type LIKE char

Поиск
Список
Период
Сортировка
От PG Bug reporting form
Тема BUG #15956: Server closed unexpectedly for user-defined base type LIKE char
Дата
Msg-id 15956-b4aa898fb01fa984@postgresql.org
обсуждение исходный текст
Ответы Re: BUG #15956: Server closed unexpectedly for user-defined base type LIKE char  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-bugs
The following bug has been logged on the website:

Bug reference:      15956
Logged by:          Jason Kim
Email address:      jj-kim@users.noreply.github.com
PostgreSQL version: 11.4
Operating system:   OS X (and CentOS)
Description:

The following causes the server to close unexpectedly.

```
CREATE TYPE char_type;
CREATE FUNCTION char_type_in(cstring) RETURNS char_type
   LANGUAGE internal IMMUTABLE STRICT AS 'charin';
CREATE FUNCTION char_type_out(char_type) RETURNS cstring
   LANGUAGE internal IMMUTABLE STRICT AS 'charout';
CREATE TYPE char_type (
   INPUT = char_type_in,
   OUTPUT = char_type_out,
   LIKE = char
);
CREATE TABLE char_table (t char_type);
INSERT INTO char_table (t)
  VALUES ('t');
```

Here is the server close message:

```
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.
!> \q
```

This is tested using Postgres v11.4 on OS X and Postgres v9.2.24 on CentOS.


В списке pgsql-bugs по дате отправления:

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: BUG #15955: changes in pg_dump from 11.4 to 11.5
Следующее
От: Tom Lane
Дата:
Сообщение: Re: BUG #15956: Server closed unexpectedly for user-defined base type LIKE char