From 2770c51fb0b4f7c3f87c42c4c4cdb50b75f6ee9c Mon Sep 17 00:00:00 2001 From: yunlongwang Date: Fri, 11 Oct 2024 02:12:42 +0000 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=20config=5Fgroup=20=E4=B8=8E?= =?UTF-8?q?=20config=5Fgroup=5Fnames=20=E4=B8=8D=E5=AF=B9=E5=BA=94?= =?UTF-8?q?=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/common/backend/utils/misc/guc.cpp | 4 ++++ src/include/utils/guc_tables.h | 1 + 2 files changed, 5 insertions(+) diff --git a/src/common/backend/utils/misc/guc.cpp b/src/common/backend/utils/misc/guc.cpp index af52de897e..66ee5b3a8c 100755 --- a/src/common/backend/utils/misc/guc.cpp +++ b/src/common/backend/utils/misc/guc.cpp @@ -1026,6 +1026,8 @@ const char* const config_group_names[] = { gettext_noop("Developer Options"), /* UPGRADE_OPTIONS */ gettext_noop("Upgrade Options"), + /* TSDB */ + gettext_noop("Timestamp Database"), /* INSTRUMENTS_OPTIONS */ gettext_noop("Instruments Options"), gettext_noop("Column Encryption"), @@ -1042,6 +1044,8 @@ const char* const config_group_names[] = { /* XC_HOUSEKEEPING_OPTIONS */ gettext_noop("XC Housekeeping Options"), #endif + /* Ustore WAL */ + gettext_noop("Ustore WAL"), /* help_config wants this array to be null-terminated */ NULL}; diff --git a/src/include/utils/guc_tables.h b/src/include/utils/guc_tables.h index 1e7b9c0370..610ddf5a0e 100644 --- a/src/include/utils/guc_tables.h +++ b/src/include/utils/guc_tables.h @@ -102,6 +102,7 @@ enum config_group { TSDB, INSTRUMENTS_OPTIONS, CE_OPTIONS, + COMPRESS_OPTIONS, SHARED_STORAGE_OPTIONS, #ifdef PGXC DATA_NODES, -- Gitee