!6576 修复gms_sql插件不能正常安装问题

Merge pull request !6576 from yanguotao/gms_sql_bugfix
This commit is contained in:
opengauss_bot
2024-10-28 09:15:54 +00:00
committed by Gitee
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);