1
0
mirror of https://github.com/postgres/postgres.git synced 2025-05-01 01:04:50 +03:00

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
This commit is contained in:
Tom Lane 2019-03-23 01:32:58 -04:00
parent cdcffe2263
commit fb50d3f03f

View File

@ -2332,6 +2332,7 @@ LookupFuncWithArgs(ObjectType objtype, ObjectWithArgs *func, bool missing_ok)
NIL, argoids))));
break;
}
break;
case FUNCLOOKUP_AMBIGUOUS:
switch (objtype)