pgsql: Fix implicit-fallthrough compiler warning introduced in 6dda292d

From: Andres Freund <andres(at)anarazel(dot)de>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Fix implicit-fallthrough compiler warning introduced in 6dda292d
Date: 2019-09-27 17:29:49
Message-ID: E1iDu3x-0005jE-GZ@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Fix implicit-fallthrough compiler warning introduced in 6dda292d4df82.

For some reason at least gcc-9 warns about the fallthrough, even
though it otherwise recognizes that elog(ERROR, ...) doesn't return.

Author: Andres Freund

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/c967e13f4047ef6f3d91bcb1cff6d746322aff6d

Modified Files
--------------
src/backend/utils/adt/jsonb_util.c | 2 ++
1 file changed, 2 insertions(+)

Browse pgsql-committers by date

  From Date Subject
Next Message Alvaro Herrera 2019-09-27 19:45:12 pgsql: Have pg_rewind run crash recovery before rewinding
Previous Message Nikita Glukhov 2019-09-27 15:55:31 Re: pgsql: Implement jsonpath .datetime() method