BUG #16507: RTRIM function doesnt behave as expected for certain scenario

Поиск
Список
Период
Сортировка
От PG Bug reporting form
Тема BUG #16507: RTRIM function doesnt behave as expected for certain scenario
Дата
Msg-id 16507-9f30407b2c52a573@postgresql.org
обсуждение исходный текст
Ответы Re: BUG #16507: RTRIM function doesnt behave as expected for certain scenario  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-bugs
The following bug has been logged on the website:

Bug reference:      16507
Logged by:          Chetan Burande
Email address:      chetan.burande7@gmail.com
PostgreSQL version: Unsupported/Unknown
Operating system:   Linux
Description:

Hi Team,

I am trying to use RTIM function on a String (Column data) to remove some
character/string from the right end.

Example - 
select column_name, RTRIM(column_name, '-1') from table_name;
 column_name | rtrim
-----------------------------------------+---------------------------------------
test-2020_03_01-2020_03_31-1 | test-2020_03_01-2020_03_3
test-2019_02_01-2019_02_28-1 | test-2019_02_01-2019_02_28
test-2019_04_01-2019_04_30-1 | test-2019_04_01-2019_04_30

In case of the first string, RTRIM is removing "1-1" instead of "-1". 
I expect it to remove "-1" as it did in other strings.

Please let me know if you need any further information.

Thanks,
Chetan


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

Предыдущее
От: Paul Eggert
Дата:
Сообщение: Re: [PATCH] Stop using zic’s -p option.
Следующее
От: Tom Lane
Дата:
Сообщение: Re: BUG #16507: RTRIM function doesnt behave as expected for certain scenario