aboutsummaryrefslogtreecommitdiff
path: root/src/backend/utils/misc
diff options
context:
space:
mode:
Diffstat (limited to 'src/backend/utils/misc')
-rw-r--r--src/backend/utils/misc/guc.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/backend/utils/misc/guc.c b/src/backend/utils/misc/guc.c
index 6eae3d62ccf..e1c51c54812 100644
--- a/src/backend/utils/misc/guc.c
+++ b/src/backend/utils/misc/guc.c
@@ -5391,6 +5391,7 @@ AtEOXact_GUC(bool isCommit, int nestLevel)
{
case GUC_SAVE:
Assert(false); /* can't get here */
+ break;
case GUC_SET:
/* next level always becomes SET */
@@ -6257,7 +6258,8 @@ set_config_option(const char *name, const char *value,
name)));
return 0;
}
- /* FALL THRU to process the same as PGC_BACKEND */
+ /* fall through to process the same as PGC_BACKEND */
+ /* FALLTHROUGH */
case PGC_BACKEND:
if (context == PGC_SIGHUP)
{