From 3701db77a08ecbd28c6f600de81f53d3712568fe Mon Sep 17 00:00:00 2001 From: Michael Paquier Date: Wed, 20 Sep 2023 13:37:02 +0900 Subject: [PATCH] doc: Fix description of BUFFER_USAGE_LIMIT for VACUUM and ANALYZE BUFFER_USAGE_LIMIT requires a parameter, and 'B' is a supported unit. Author: Ryoga Yoshida Reviewed-by: Shinya Kato Discussion: https://postgr.es/m/9374034cb91b647b55a774a8980b0228@oss.nttdata.com Backpatch-through: 16 --- doc/src/sgml/ref/analyze.sgml | 8 ++++---- doc/src/sgml/ref/vacuum.sgml | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/doc/src/sgml/ref/analyze.sgml b/doc/src/sgml/ref/analyze.sgml index aa3e9e1c5f..73fa3b3dff 100644 --- a/doc/src/sgml/ref/analyze.sgml +++ b/doc/src/sgml/ref/analyze.sgml @@ -28,7 +28,7 @@ ANALYZE [ VERBOSE ] [ table_and_columnsboolean ] SKIP_LOCKED [ boolean ] - BUFFER_USAGE_LIMIT [ size ] + BUFFER_USAGE_LIMIT size and table_and_columns is: @@ -136,9 +136,9 @@ ANALYZE [ VERBOSE ] [ table_and_columns Specifies an amount of memory in kilobytes. Sizes may also be specified as a string containing the numerical size followed by any one of the - following memory units: kB (kilobytes), - MB (megabytes), GB (gigabytes), or - TB (terabytes). + following memory units: B (bytes), + kB (kilobytes), MB (megabytes), + GB (gigabytes), or TB (terabytes). diff --git a/doc/src/sgml/ref/vacuum.sgml b/doc/src/sgml/ref/vacuum.sgml index 65c03bf829..2b85c3d385 100644 --- a/doc/src/sgml/ref/vacuum.sgml +++ b/doc/src/sgml/ref/vacuum.sgml @@ -39,7 +39,7 @@ VACUUM [ FULL ] [ FREEZE ] [ VERBOSE ] [ ANALYZE ] [ integer SKIP_DATABASE_STATS [ boolean ] ONLY_DATABASE_STATS [ boolean ] - BUFFER_USAGE_LIMIT [ size ] + BUFFER_USAGE_LIMIT size and table_and_columns is: @@ -399,9 +399,9 @@ VACUUM [ FULL ] [ FREEZE ] [ VERBOSE ] [ ANALYZE ] [