Commit fb50d3f0 authored by Tom Lane's avatar Tom Lane

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
parent cdcffe22
...@@ -2332,6 +2332,7 @@ LookupFuncWithArgs(ObjectType objtype, ObjectWithArgs *func, bool missing_ok) ...@@ -2332,6 +2332,7 @@ LookupFuncWithArgs(ObjectType objtype, ObjectWithArgs *func, bool missing_ok)
NIL, argoids)))); NIL, argoids))));
break; break;
} }
break;
case FUNCLOOKUP_AMBIGUOUS: case FUNCLOOKUP_AMBIGUOUS:
switch (objtype) switch (objtype)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment