From: John Naylor Date: Wed, 21 Jul 2021 14:28:34 +0000 (-0400) Subject: Document "B" as an accepted unit in postgres.conf.sample X-Git-Tag: REL_11_13~31 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7155e0522fbf1403711ce712f48d346c0c85c179;p=thirdparty%2Fpostgresql.git Document "B" as an accepted unit in postgres.conf.sample In postgresql.conf, memory and file size GUCs can be specified with "B" (bytes) as of b06d8e58b. Pavel Luzanov This is a backpatch to v11 of a portion of bb95feabb. Discussion: https://www.postgresql.org/message-id/flat/f10d16fc-8fa0-1b3c-7371-cb3a35a13b7a%40postgrespro.ru --- diff --git a/src/backend/utils/misc/postgresql.conf.sample b/src/backend/utils/misc/postgresql.conf.sample index 07f69226cbe..46ad6d6271c 100644 --- a/src/backend/utils/misc/postgresql.conf.sample +++ b/src/backend/utils/misc/postgresql.conf.sample @@ -24,11 +24,11 @@ # "postgres -c log_connections=on". Some parameters can be changed at run time # with the "SET" SQL command. # -# Memory units: kB = kilobytes Time units: ms = milliseconds -# MB = megabytes s = seconds -# GB = gigabytes min = minutes -# TB = terabytes h = hours -# d = days +# Memory units: B = bytes Time units: ms = milliseconds +# kB = kilobytes s = seconds +# MB = megabytes min = minutes +# GB = gigabytes h = hours +# TB = terabytes d = days #------------------------------------------------------------------------------