Wrong parameter names for make_interval (Postgres 13)

From: Thomas Kellerer <shammat(at)gmx(dot)net>
To: pgsql-docs(at)lists(dot)postgresql(dot)org
Subject: Wrong parameter names for make_interval (Postgres 13)
Date: 2020-10-05 13:56:46
Message-ID: 7b154ef0-9f22-90b9-7734-4bf23686695b@gmx.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-docs

There is a typo in the parameter names of the make_interval() function.

The parameter names are all defined with plural, not singular as it is shown
in the Postgres 13 manual.

So instead of

make_interval ( [ year int [, month int [, week int [, day int [, hour int [, min int [, sec double precision ]]]]]]] )

it should be

make_interval ( [ years int [, months int [, weeks int [, days int [,hours int [, mins int [, secs double precision ]]]]]]] )

Thomas

Responses

Browse pgsql-docs by date

  From Date Subject
Next Message Pavel Stehule 2020-10-05 14:33:46 Re: Wrong parameter names for make_interval (Postgres 13)
Previous Message Daniel Westermann (DWE) 2020-10-05 08:16:01 Re: Wrong example in the bloom documentation