From: | PG Bug reporting form <noreply(at)postgresql(dot)org> |
---|---|
To: | pgsql-bugs(at)lists(dot)postgresql(dot)org |
Cc: | darryl(dot)dixon(at)gmail(dot)com |
Subject: | BUG #18451: NULL fails to coerce to string when performing string comparison |
Date: | 2024-04-30 01:16:14 |
Message-ID: | 18451-dc130ad59b7bd7c9@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: 18451
Logged by: Darryl Dixon
Email address: darryl(dot)dixon(at)gmail(dot)com
PostgreSQL version: 14.11
Operating system: Ubuntu 22.04 64Bit
Description:
postdb=# select where 'ab' like '%a%';
--
(1 row)
postdb=# select where 'ab'||NULL like '%a%';
--
(0 rows)
postdb=# select where 'ab'||NULL::text like '%a%';
--
(0 rows)
postdb=# select where 'ab'||format('%s', NULL::text) like '%a%';
--
(1 row)
postdb=# select version();
version
----------------------------------------------------------------------------------------------------------------------------------------
PostgreSQL 14.11 (Ubuntu 14.11-0ubuntu0.22.04.1) on x86_64-pc-linux-gnu,
compiled by gcc (Ubuntu 11.4.0-1ubuntu1~22.04) 11.4.0, 64-bit
(1 row)
From | Date | Subject | |
---|---|---|---|
Next Message | Thomas Munro | 2024-04-30 02:14:50 | Re: Re: edb installation failed for pgadmin when username is Chinese under c;\user #7432 |
Previous Message | David Rowley | 2024-04-30 00:48:30 | Re: BUG #17855: Uninitialised memory used when the name type value processed in binary mode of Memoize |