Numeric documentation paragraph reverse argument order.

From: PG Doc comments form <noreply(at)postgresql(dot)org>
To: pgsql-docs(at)lists(dot)postgresql(dot)org
Cc: claytonjsalem(at)gmail(dot)com
Subject: Numeric documentation paragraph reverse argument order.
Date: 2018-06-22 13:54:26
Message-ID: 152967566691.1268.1062965601465200209@wrigleys.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-docs

The following documentation comment has been logged on the website:

Page: https://www.postgresql.org/docs/10/static/datatype-numeric.html
Description:

This is not a correction, but a clarification. In the paragraph describing
the Numeric type,
https://www.postgresql.org/docs/10/static/datatype-numeric.html#DATATYPE-NUMERIC-DECIMAL
the description of the arguments is reversed from the order of the
arguments, i.e. scale before numeric, while the argument is numeric before
scale. My suggestion is to change the following paragraph:

> We use the following terms below: The scale of a numeric is the count of
decimal digits in the fractional part, to the right of the decimal point.
The precision of a numeric is the total count of significant digits in the
whole number, that is, the number of digits to both sides of the decimal
point. So the number 23.5141 has a precision of 6 and a scale of 4. Integers
can be considered to have a scale of zero.

to:

> We use the following terms below: The precision of a numeric is the total
count of significant digits in the whole number, that is, the number of
digits to both sides of the decimal point. The scale of a numeric is the
count of decimal digits in the fractional part, to the right of the decimal
point. So the number 23.5141 has a precision of 6 and a scale of 4. Integers
can be considered to have a scale of zero.

That way the order in the paragraph (precision, scale), matches the argument
order `NUMERIC(precision, scale)`

Responses

Browse pgsql-docs by date

  From Date Subject
Next Message Euler Taveira 2018-06-22 20:52:30 Re: postgresql 11 release notes
Previous Message PG Doc comments form 2018-06-21 22:35:38 Documentation of pg_index.indcollation missing some info in older versions?