From 7a7849a48a0a9a3172ddaa079d4493450b118049 Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Thu, 21 May 2020 08:36:08 +0200 Subject: [PATCH] Fix -Wimplicit-fallthrough=3 warning for PostgreSQL 13 --- uri.c | 1 + 1 file changed, 1 insertion(+) diff --git a/uri.c b/uri.c index 1dfb6d2..0a90665 100644 --- a/uri.c +++ b/uri.c @@ -42,6 +42,7 @@ parse_uri(const char *s, UriUriA *urip) (errcode(ERRCODE_INVALID_TEXT_REPRESENTATION), errmsg("invalid input syntax for type uri at or near \"%s\"", state.errorPos))); + break; default: elog(ERROR, "liburiparser error code %d", state.errorCode); }