]> granicus.if.org Git - postgresql/commit
Accept "B" in all memory-unit GUCs, and improve error messages.
authorHeikki Linnakangas <heikki.linnakangas@iki.fi>
Wed, 23 May 2018 07:02:40 +0000 (10:02 +0300)
committerHeikki Linnakangas <heikki.linnakangas@iki.fi>
Wed, 23 May 2018 07:22:26 +0000 (10:22 +0300)
commitb06d8e58b5ac257c2119312c47c4a0f233c5e0ca
tree89c67c6bfef99412dce2f94007f434d0a7d088fb
parente41c2b057f92c3824ffe0157e83ee43624487035
Accept "B" in all memory-unit GUCs, and improve error messages.

Commit 6e7baa3227 added support for "B" unit, for specifying config options
in bytes. However, it was only accepted in GUC_UNIT_BYTE settings,
wal_segment_size and track_activity_query_size, and not e.g. in work_mem.
This patch makes it consistent, so that "B" accepted in all the same
contexts where "kB", "MB", and so forth are accepted.

Add "B" to the list of accepted units in the error hint, along with "kB",
"MB", etc.

Add an entry in the conversion table for "TB" to "B" conversion. A terabyte
is out of range for any GUC_UNIT_BYTE option, so you always get an "out of
range" error with that, but without it, you get a confusing error message
that claims that "TB" is not an accepted unit, with a hint that nevertheless
lists "TB" as an accepted unit.

Reviewed-by: Alexander Korotkov, Andres Freund
Discussion: https://www.postgresql.org/message-id/1bfe7f4a-7e22-aa6e-7b37-f4d222ed2d67@iki.fi
src/backend/utils/misc/guc.c