We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2bdea9 commit 7e70f24Copy full SHA for 7e70f24
multimaster.c
@@ -4987,7 +4987,7 @@ char* MtmGucSerialize(void)
4987
appendStringInfoString(serialized_gucs, " TO ");
4988
4989
gconf = fing_guc_conf(cur_entry->key);
4990
- if (gconf && (gconf->vartype == PGC_STRING || gconf->flags & (GUC_UNIT_MEMORY | GUC_UNIT_TIME)))
+ if (gconf && (gconf->vartype == PGC_STRING || gconf->vartype == PGC_ENUM || (gconf->flags & (GUC_UNIT_MEMORY | GUC_UNIT_TIME))))
4991
{
4992
appendStringInfoString(serialized_gucs, "'");
4993
appendStringInfoString(serialized_gucs, cur_entry->value);
0 commit comments