BUG #18111: Query hangs when trying to INSERT empty string into NOT NULL table - Mailing list pgsql-bugs

From PG Bug reporting form
Subject BUG #18111: Query hangs when trying to INSERT empty string into NOT NULL table
Date
Msg-id 18111-1b3e19f428f1c418@postgresql.org
Whole thread Raw
Responses Re: BUG #18111: Query hangs when trying to INSERT empty string into NOT NULL table
Re: BUG #18111: Query hangs when trying to INSERT empty string into NOT NULL table
List 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 by date:

Previous
From: Tom Lane
Date:
Subject: Re: Segmentation Fault
Next
From: David Rowley
Date:
Subject: Re: BUG #18111: Query hangs when trying to INSERT empty string into NOT NULL table