Fix -Wimplicit-fallthrough=3 warning

for PostgreSQL 13
This commit is contained in:
Peter Eisentraut 2020-05-21 08:36:08 +02:00
parent 969031cd25
commit 7a7849a48a
1 changed files with 1 additions and 0 deletions

1
uri.c
View File

@ -42,6 +42,7 @@ parse_uri(const char *s, UriUriA *urip)
(errcode(ERRCODE_INVALID_TEXT_REPRESENTATION), (errcode(ERRCODE_INVALID_TEXT_REPRESENTATION),
errmsg("invalid input syntax for type uri at or near \"%s\"", errmsg("invalid input syntax for type uri at or near \"%s\"",
state.errorPos))); state.errorPos)));
break;
default: default:
elog(ERROR, "liburiparser error code %d", state.errorCode); elog(ERROR, "liburiparser error code %d", state.errorCode);
} }