Обсуждение: pgsql: Silence Coverity warnings about unused return values from pushJs

Поиск
Список
Период
Сортировка

pgsql: Silence Coverity warnings about unused return values from pushJs

От
Heikki Linnakangas
Дата:
Silence Coverity warnings about unused return values from pushJsonbValue()

Similar warnings from backend were silenced earlier by commit c8315930,
but there were a few more contrib/hstore.

Michael Paquier

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/e37d474f91c3a8a88be28a65389c948a55f18075

Modified Files
--------------
contrib/hstore/hstore_io.c |   12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)


Re: pgsql: Silence Coverity warnings about unused return values from pushJs

От
Andrew Dunstan
Дата:



On 01/13/2015 07:33 AM, Heikki Linnakangas wrote:
> Silence Coverity warnings about unused return values from pushJsonbValue()
>
> Similar warnings from backend were silenced earlier by commit c8315930,
> but there were a few more contrib/hstore.
>

Shouldn't this be backpatched to 9.4?

cheers

andrew


Re: pgsql: Silence Coverity warnings about unused return values from pushJs

От
Heikki Linnakangas
Дата:
On 01/13/2015 03:51 PM, Andrew Dunstan wrote:
> On 01/13/2015 07:33 AM, Heikki Linnakangas wrote:
>> Silence Coverity warnings about unused return values from pushJsonbValue()
>>
>> Similar warnings from backend were silenced earlier by commit c8315930,
>> but there were a few more contrib/hstore.
>
> Shouldn't this be backpatched to 9.4?

Oh. I noticed that c8315930 was not backpatched either, but now that I
look more closely, that was only because the code that c8315930 fixed
didn't exist in 9.4.

Will backpatch..

- Heikki