BUG #17410: After upgrade to postgresql 12.9 from 12.6 , some of the statements having ”=” operator not returnin

Поиск
Список
Период
Сортировка
От PG Bug reporting form
Тема BUG #17410: After upgrade to postgresql 12.9 from 12.6 , some of the statements having ”=” operator not returnin
Дата
Msg-id 17410-71d069d3f9dbb637@postgresql.org
обсуждение исходный текст
Ответы Re: BUG #17410: After upgrade to postgresql 12.9 from 12.6 , some of the statements having ”=” operator not returnin  ("David G. Johnston" <david.g.johnston@gmail.com>)
Список pgsql-bugs
The following bug has been logged on the website:

Bug reference:      17410
Logged by:          satish nayak
Email address:      satish.nayak@nmc.ae
PostgreSQL version: 12.9
Operating system:   Ubuntu 9.3.0-17ubuntu1~20.04  9.3.0, 64-bit
Description:

After upgrade to postgresql 12.9 from 12.6 , some of the statements having
”=” operator not returning any rows..
 
Eg :
 

----------------------------------------------------------------------------------------------------------------------------------
 PostgreSQL 12.9 (Ubuntu 12.9-2.pgdg20.04+1) on x86_64-pc-linux-gnu,
compiled by gcc (Ubuntu 9.3.0-17ubuntu1~20.04) 9.3.0, 64-bit
(1 row)
=> \x
Expanded display is on.
=> select * from store_item_details  where medicine_name ='DEXTROSE 10% :500
ML';
(0 rows)
 
 
Where as in 12.6 version , we are able to see the row.
 
-[ RECORD 1

]----------------------------------------------------------------------------------------------------------------------------------------
version | PostgreSQL 12.6 (Ubuntu 12.6-1.pgdg16.04+1) on
x86_64-pc-linux-gnu, compiled by gcc (Ubuntu 5.4.0-6ubuntu1~16.04.12) 5.4.0
20160609, 64-bit
 
hmsuat=# \x
Expanded display is off.
hmsuat=# select * from store_item_details  where medicine_name ='DEXTROSE
10% :500 ML';
hmsuat=# select count(1) from store_item_details  where medicine_name
='DEXTROSE 10% :500 ML';
 count 
-------
     1
(1 row)


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

Предыдущее
От: Japin Li
Дата:
Сообщение: Re: BUG #17409: Unable to alter data type of clustered column which is referenced by foreign key
Следующее
От: "David G. Johnston"
Дата:
Сообщение: Re: BUG #17410: After upgrade to postgresql 12.9 from 12.6 , some of the statements having ”=” operator not returnin