diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2019-03-23 01:32:58 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2019-03-23 01:32:58 -0400 |
commit | fb50d3f03fe6876b878d636a312c2ccc1f4f99af (patch) | |
tree | f8ccafade0fe628db2c8c817135a671cca53b56c /src/backend/parser/parse_func.c | |
parent | cdcffe2263215eef9078ce97e6c9adece8ed1910 (diff) | |
download | postgresql-fb50d3f03fe6876b878d636a312c2ccc1f4f99af.tar.gz postgresql-fb50d3f03fe6876b878d636a312c2ccc1f4f99af.zip |
Add unreachable "break" to satisfy -Wimplicit-fallthrough.
gcc is a bit pickier about this than perhaps it should be.
Discussion: https://postgr.es/m/E1h6zzT-0003ft-DD@gemulon.postgresql.org
Diffstat (limited to 'src/backend/parser/parse_func.c')
-rw-r--r-- | src/backend/parser/parse_func.c | 1 |
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) |