Wrong parameter names for make_interval (Postgres 13)

Поиск
Список
Период
Сортировка
От Thomas Kellerer
Тема Wrong parameter names for make_interval (Postgres 13)
Дата
Msg-id 7b154ef0-9f22-90b9-7734-4bf23686695b@gmx.net
обсуждение исходный текст
Ответы Re: Wrong parameter names for make_interval (Postgres 13)
Список 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



В списке pgsql-docs по дате отправления:

Предыдущее
От: "Daniel Westermann (DWE)"
Дата:
Сообщение: Re: Wrong example in the bloom documentation
Следующее
От: Pavel Stehule
Дата:
Сообщение: Re: Wrong parameter names for make_interval (Postgres 13)