diff --git a/build/script/aarch64_lite_list b/build/script/aarch64_lite_list index 8533943e9fbd817f6b4697105638a7f3a20f9fa1..7bbdaa1ce79a9f5adbed896af58b68f93171bd9b 100644 --- a/build/script/aarch64_lite_list +++ b/build/script/aarch64_lite_list @@ -801,6 +801,7 @@ ./lib/postgresql/gms_raw.so ./lib/postgresql/gms_match.so ./lib/postgresql/gms_assert.so +./lib/postgresql/gms_tcp.so ./lib/postgresql/shark.so ./include/postgresql/server/postgres_ext.h ./include/postgresql/server/pg_config_os.h diff --git a/build/script/loongarch64_lite_list b/build/script/loongarch64_lite_list index a843aebc5f376d7d0a303f6a921fec64b1bf8f1a..1d2ede65b59347613485b8183207167d4aca4edf 100644 --- a/build/script/loongarch64_lite_list +++ b/build/script/loongarch64_lite_list @@ -785,6 +785,7 @@ ./lib/postgresql/gms_raw.so ./lib/postgresql/gms_match.so ./lib/postgresql/gms_assert.so +./lib/postgresql/gms_tcp.so ./lib/postgresql/shark.so ./include/postgresql/server/postgres_ext.h ./include/postgresql/server/pg_config_os.h diff --git a/build/script/loongarch64_opengauss_list b/build/script/loongarch64_opengauss_list index 6afd0b5c4829da0d621b7fc3204be260bf1ab31c..65552680361f8ff848a9581da9de7ed4951b2c3e 100644 --- a/build/script/loongarch64_opengauss_list +++ b/build/script/loongarch64_opengauss_list @@ -803,6 +803,7 @@ ./lib/postgresql/pgoutput.so ./lib/postgresql/assessment.so ./lib/postgresql/gms_stats.so +./lib/postgresql/gms_tcp.so ./lib/libpljava.so ./lib/libpq.a ./lib/libpq.so diff --git a/build/script/opengauss_release_list_mini b/build/script/opengauss_release_list_mini index a01a1b0fcb583989208fb284da3d11af0aa0d764..fd47ffa457da7be0c483851a0548633d0f65baae 100644 --- a/build/script/opengauss_release_list_mini +++ b/build/script/opengauss_release_list_mini @@ -108,6 +108,10 @@ ./share/postgresql/extension/gms_match.control ./share/postgresql/extension/gms_assert--1.0.sql ./share/postgresql/extension/gms_assert.control +./share/postgresql/extension/gms_tcp--1.0.sql +./share/postgresql/extension/gms_tcp.control +./share/postgresql/extension/gms_tcp--1.0--1.1.sql +./share/postgresql/extension/gms_tcp--1.1.sql ./share/postgresql/extension/shark--1.0.sql ./share/postgresql/extension/shark.control ./share/postgresql/timezone/GB-Eire @@ -797,6 +801,7 @@ ./lib/postgresql/gms_raw.so ./lib/postgresql/gms_match.so ./lib/postgresql/gms_assert.so +./lib/postgresql/gms_tcp.so ./lib/postgresql/shark.so ./lib/libpljava.so ./lib/libpq.a diff --git a/build/script/opengauss_release_list_ubuntu_single b/build/script/opengauss_release_list_ubuntu_single index f9829ba219cb82d577a64abb309e23b78a3c643c..967f818a1e726033c44bb6e2976200387b3e085f 100644 --- a/build/script/opengauss_release_list_ubuntu_single +++ b/build/script/opengauss_release_list_ubuntu_single @@ -131,6 +131,8 @@ ./share/postgresql/extension/gms_sql.control ./share/postgresql/extension/gms_tcp--1.0.sql ./share/postgresql/extension/gms_tcp.control +./share/postgresql/extension/gms_tcp--1.0--1.1.sql +./share/postgresql/extension/gms_tcp--1.1.sql ./share/postgresql/extension/gms_xmlgen--1.0.sql ./share/postgresql/extension/gms_xmlgen.control ./share/postgresql/extension/gms_i18n--1.0.sql diff --git a/build/script/x86_64_lite_list b/build/script/x86_64_lite_list index 73612710d7b5fa76173e01e987af8ad778989343..f53c1cf5a660aaef882dfd20d5dfdd0a8718e772 100644 --- a/build/script/x86_64_lite_list +++ b/build/script/x86_64_lite_list @@ -800,6 +800,7 @@ ./lib/postgresql/gms_raw.so ./lib/postgresql/gms_match.so ./lib/postgresql/gms_assert.so +./lib/postgresql/gms_tcp.so ./lib/postgresql/shark.so ./lib/libxgboost.so ./include/postgresql/server/postgres_ext.h diff --git a/contrib/Makefile b/contrib/Makefile index e61884482a2705a152cefa7dcb76033e1aa97f47..d973de9d4c75018654a9460bc2a394d2822d3bae 100644 --- a/contrib/Makefile +++ b/contrib/Makefile @@ -70,6 +70,7 @@ SUBDIRS = \ gms_match \ gms_assert \ gms_compress \ + gms_tcp \ shark ifeq ($(with_openssl),yes) diff --git a/src/gausskernel/optimizer/commands/dropcmds.cpp b/src/gausskernel/optimizer/commands/dropcmds.cpp index 939169babdf8b9fba0daaf63ccc81c29d596ad21..817a3cb13f374f42a5ce541fc9209288449c15fa 100644 --- a/src/gausskernel/optimizer/commands/dropcmds.cpp +++ b/src/gausskernel/optimizer/commands/dropcmds.cpp @@ -108,7 +108,8 @@ static void DropExtensionInListIsSupported(List* objname) "gms_i18n", "gms_raw", "gms_match", - "gms_assert" + "gms_assert", + "gms_tcp" #endif }; int len = lengthof(supportList);