From bed513ef3010c521072fbfc06de56ecdd796ecfc Mon Sep 17 00:00:00 2001 From: liang_-123 Date: Wed, 19 May 2021 10:02:23 +0800 Subject: [PATCH] =?UTF-8?q?=E6=94=AF=E6=8C=81drop=20extension=20dblink?= =?UTF-8?q?=E8=AF=AD=E6=B3=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/gausskernel/process/tcop/utility.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gausskernel/process/tcop/utility.cpp b/src/gausskernel/process/tcop/utility.cpp index 8a08914e3..43f667518 100644 --- a/src/gausskernel/process/tcop/utility.cpp +++ b/src/gausskernel/process/tcop/utility.cpp @@ -9448,7 +9448,7 @@ bool DropExtensionIsSupported(const char* query_string) #ifndef ENABLE_MULTIPLE_NODES if (strstr(lower_string, "drop") && (strstr(lower_string, "postgis") || strstr(lower_string, "packages") || strstr(lower_string, "mysql_fdw") || strstr(lower_string, "oracle_fdw") || - strstr(lower_string, "postgres_fdw"))) { + strstr(lower_string, "postgres_fdw") || strstr(lower_string, "dblink"))) { #else if (strstr(lower_string, "drop") && (strstr(lower_string, "postgis") || strstr(lower_string, "packages"))) { #endif