BUG #18111: Query hangs when trying to INSERT empty string into NOT NULL table

Поиск
Список
Период
Сортировка
От PG Bug reporting form
Тема BUG #18111: Query hangs when trying to INSERT empty string into NOT NULL table
Дата
Msg-id 18111-1b3e19f428f1c418@postgresql.org
обсуждение исходный текст
Ответы Re: BUG #18111: Query hangs when trying to INSERT empty string into NOT NULL table  (David Rowley <dgrowleyml@gmail.com>)
Re: BUG #18111: Query hangs when trying to INSERT empty string into NOT NULL table  (Julien Rouhaud <rjuju123@gmail.com>)
Список pgsql-bugs
The following bug has been logged on the website:

Bug reference:      18111
Logged by:          Maciej Klimkowicz
Email address:      maciej.klimkowicz@oxla.com
PostgreSQL version: 15.1
Operating system:   Ubuntu
Description:

Steps to reproduce:

1.CREATE TABLE texttable (col1 TEXT NOT NULL);
2.INSERT INTO texttable (col1) VALUES ('');

Query hangs indefinitely.
For NULL column it works as expected.


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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: Segmentation Fault
Следующее
От: David Rowley
Дата:
Сообщение: Re: BUG #18111: Query hangs when trying to INSERT empty string into NOT NULL table