1
0
mirror of https://github.com/postgres/postgres.git synced 2025-05-29 16:21:20 +03:00

Fix copy-and-paste mistake in error message

Introduced in commit a68159ff2b3.
This commit is contained in:
Peter Eisentraut 2025-03-13 15:17:08 +01:00
parent 3691edfab9
commit bb25276205

View File

@ -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 data because %s is too small.",
"debug_io_direct", "BLCKSZ");
result = false;
}