Skip to content
This repository has been archived by the owner on Jul 23, 2024. It is now read-only.

Commit

Permalink
HAWQ-1821. remove GUC_NEW_DISP for statement_timeout and gp_vmem_idle…
Browse files Browse the repository at this point in the history
…_resource_timeout
  • Loading branch information
ztao1987 committed Dec 9, 2021
1 parent 3636513 commit aedf40f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/backend/utils/misc/guc.c
Original file line number Diff line number Diff line change
Expand Up @@ -5269,7 +5269,7 @@ static struct config_int ConfigureNamesInt[] =
{"statement_timeout", PGC_USERSET, CLIENT_CONN_STATEMENT,
gettext_noop("Sets the maximum allowed duration (in milliseconds) of any statement."),
gettext_noop("A value of 0 turns off the timeout."),
GUC_UNIT_MS | GUC_GPDB_ADDOPT | GUC_NEW_DISP
GUC_UNIT_MS | GUC_GPDB_ADDOPT
},
&StatementTimeout,
0, 0, INT_MAX, NULL, NULL
Expand All @@ -5279,7 +5279,7 @@ static struct config_int ConfigureNamesInt[] =
{"gp_vmem_idle_resource_timeout", PGC_USERSET, CLIENT_CONN_OTHER,
gettext_noop("Sets the time a session can be idle (in milliseconds) before we release gangs on the segment DBs to free resources."),
gettext_noop("A value of 0 means closing idle gangs at once"),
GUC_UNIT_MS | GUC_GPDB_ADDOPT | GUC_NEW_DISP
GUC_UNIT_MS | GUC_GPDB_ADDOPT
},
&IdleSessionGangTimeout,
#ifdef USE_ASSERT_CHECKING
Expand Down

0 comments on commit aedf40f

Please sign in to comment.