Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 4e1aaef

Browse files
author
Nikita Glukhov
committed
Replace "fall through" with "FALLTHROUGH"
1 parent 04bdde0 commit 4e1aaef

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/backend/utils/adt/jsonb_selfuncs.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -930,7 +930,7 @@ jsonbStatsVarOpConst(Oid opid, VariableStatData *resdata,
930930
{
931931
case JsonbObjectFieldTextOperator:
932932
statype = JsonStatText;
933-
/* fall through */
933+
/* FALLTHROUGH */
934934
case JsonbObjectFieldOperator:
935935
{
936936
if (cnst->consttype != TEXTOID)
@@ -946,7 +946,7 @@ jsonbStatsVarOpConst(Oid opid, VariableStatData *resdata,
946946

947947
case JsonbArrayElementTextOperator:
948948
statype = JsonStatText;
949-
/* fall through */
949+
/* FALLTHROUGH */
950950
case JsonbArrayElementOperator:
951951
{
952952
if (cnst->consttype != INT4OID)
@@ -963,7 +963,7 @@ jsonbStatsVarOpConst(Oid opid, VariableStatData *resdata,
963963

964964
case JsonbExtractPathTextOperator:
965965
statype = JsonStatText;
966-
/* fall through */
966+
/* FALLTHROUGH */
967967
case JsonbExtractPathOperator:
968968
{
969969
Datum *path;

0 commit comments

Comments
 (0)