forked from huawei/openGauss-server
!974 支持drop extension dblink语法
Merge pull request !974 from liang/dblink
This commit is contained in:
commit
73b9e39db7
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue