From 80bf8d4761361c791eb15a55644b85facaaacdf5 Mon Sep 17 00:00:00 2001 From: Konstantin Knizhnik Date: Tue, 19 Dec 2023 14:45:25 +0200 Subject: [PATCH] Allow empty connection string --- pgxn/neon/libpagestore.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/pgxn/neon/libpagestore.c b/pgxn/neon/libpagestore.c index 76d5c8f259..cc897f29c9 100644 --- a/pgxn/neon/libpagestore.c +++ b/pgxn/neon/libpagestore.c @@ -596,11 +596,6 @@ CheckPageserverConnstring(char **newval, void **extra, GucSource source) i += 1; } while (sep != NULL); - if (i == 0) - { - neon_log(LOG, "No shards were specified"); - return false; - } return true; }