From 245b23c198c91cbd94d6314b9f2d3f1f1ecf4a43 Mon Sep 17 00:00:00 2001 From: yanguotao Date: Mon, 28 Oct 2024 16:31:01 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8Dgms=5Fsql=E4=B8=8D=E8=83=BD?= =?UTF-8?q?=E6=AD=A3=E5=B8=B8=E5=AE=89=E8=A3=85=E9=97=AE=E9=A2=98,=20?= =?UTF-8?q?=E5=A2=9E=E5=8A=A0gms=5Flob,=20gms=5Fsql=E5=88=A0=E9=99=A4?= =?UTF-8?q?=E5=91=BD=E4=BB=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- GNUmakefile.in | 1 + contrib/Makefile | 4 +++- src/gausskernel/optimizer/commands/dropcmds.cpp | 4 +++- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/GNUmakefile.in b/GNUmakefile.in index a998f2d8d..6e9b64af8 100644 --- a/GNUmakefile.in +++ b/GNUmakefile.in @@ -116,6 +116,7 @@ install: fi \ fi @if test -d contrib/gms_lob; then $(MAKE) -C contrib/gms_lob $@; fi + @if test -d contrib/gms_sql; then $(MAKE) -C contrib/gms_sql $@; fi +@echo "openGauss installation complete." endif endif diff --git a/contrib/Makefile b/contrib/Makefile index 5e57def35..50d5d9c3b 100644 --- a/contrib/Makefile +++ b/contrib/Makefile @@ -58,7 +58,9 @@ SUBDIRS = \ security_plugin \ ndpplugin \ gms_profiler \ - gms_output + gms_output \ + gms_lob \ + gms_sql ifeq ($(with_openssl),yes) SUBDIRS += sslinfo diff --git a/src/gausskernel/optimizer/commands/dropcmds.cpp b/src/gausskernel/optimizer/commands/dropcmds.cpp index 9b30be389..6d7508ad1 100644 --- a/src/gausskernel/optimizer/commands/dropcmds.cpp +++ b/src/gausskernel/optimizer/commands/dropcmds.cpp @@ -97,7 +97,9 @@ static void DropExtensionInListIsSupported(List* objname) "age", "gms_stats", "gms_output", - "gms_profiler" + "gms_profiler", + "gms_lob", + "gms_sql" #endif }; int len = lengthof(supportList);