diff options
Diffstat (limited to 'src/backend/storage/file/fd.c')
-rw-r--r-- | src/backend/storage/file/fd.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/backend/storage/file/fd.c b/src/backend/storage/file/fd.c index 42bf857e873..7c403fb360e 100644 --- a/src/backend/storage/file/fd.c +++ b/src/backend/storage/file/fd.c @@ -3985,7 +3985,7 @@ check_debug_io_direct(char **newval, void **extra, GucSource source) if (!SplitGUCList(rawstring, ',', &elemlist)) { - GUC_check_errdetail("Invalid list syntax in parameter \"%s\"", + GUC_check_errdetail("Invalid list syntax in parameter \"%s\".", "debug_io_direct"); pfree(rawstring); list_free(elemlist); @@ -4005,7 +4005,7 @@ check_debug_io_direct(char **newval, void **extra, GucSource source) flags |= IO_DIRECT_WAL_INIT; else { - GUC_check_errdetail("Invalid option \"%s\"", item); + GUC_check_errdetail("Invalid option \"%s\".", item); result = false; break; } @@ -4018,7 +4018,7 @@ check_debug_io_direct(char **newval, void **extra, GucSource source) #if XLOG_BLCKSZ < PG_IO_ALIGN_SIZE if (result && (flags & (IO_DIRECT_WAL | IO_DIRECT_WAL_INIT))) { - GUC_check_errdetail("\"%s\" is not supported for WAL because %s is too small", + GUC_check_errdetail("\"%s\" is not supported for WAL because %s is too small.", "debug_io_direct", "XLOG_BLCKSZ"); result = false; } @@ -4026,7 +4026,7 @@ check_debug_io_direct(char **newval, void **extra, GucSource source) #if BLCKSZ < PG_IO_ALIGN_SIZE if (result && (flags & IO_DIRECT_DATA)) { - GUC_check_errdetail("\"%s\" is not supported for WAL because %s is too small", + GUC_check_errdetail("\"%s\" is not supported for WAL because %s is too small.", "debug_io_direct", "BLCKSZ"); result = false; } |