修复gms_sql不能正常安装问题, 增加gms_lob, gms_sql删除命令

This commit is contained in:
yanguotao
2024-10-28 16:31:01 +08:00
parent f8f30f53d3
commit 245b23c198
3 changed files with 7 additions and 2 deletions

View File

@ -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

View File

@ -58,7 +58,9 @@ SUBDIRS = \
security_plugin \
ndpplugin \
gms_profiler \
gms_output
gms_output \
gms_lob \
gms_sql
ifeq ($(with_openssl),yes)
SUBDIRS += sslinfo

View File

@ -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);