summaryrefslogtreecommitdiff
path: root/src/backend/parser/parse_func.c
diff options
context:
space:
mode:
authorTom Lane2019-03-23 05:32:58 +0000
committerTom Lane2019-03-23 05:32:58 +0000
commitfb50d3f03fe6876b878d636a312c2ccc1f4f99af (patch)
treef8ccafade0fe628db2c8c817135a671cca53b56c /src/backend/parser/parse_func.c
parentcdcffe2263215eef9078ce97e6c9adece8ed1910 (diff)
Add unreachable "break" to satisfy -Wimplicit-fallthrough.
gcc is a bit pickier about this than perhaps it should be. Discussion: https://postgr.es/m/[email protected]
Diffstat (limited to 'src/backend/parser/parse_func.c')
-rw-r--r--src/backend/parser/parse_func.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/backend/parser/parse_func.c b/src/backend/parser/parse_func.c
index 7aa1a748ec8..b8447771bd9 100644
--- a/src/backend/parser/parse_func.c
+++ b/src/backend/parser/parse_func.c
@@ -2332,6 +2332,7 @@ LookupFuncWithArgs(ObjectType objtype, ObjectWithArgs *func, bool missing_ok)
NIL, argoids))));
break;
}
+ break;
case FUNCLOOKUP_AMBIGUOUS:
switch (objtype)