pgsql: Add support for the error functions erf() and erfc().

Поиск
Список
Период
Сортировка
От Dean Rasheed
Тема pgsql: Add support for the error functions erf() and erfc().
Дата
Msg-id E1pc0qe-003TXB-B6@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Add support for the error functions erf() and erfc().

Expose the standard error functions as SQL-callable functions. These
are expected to be useful to people working with normal distributions,
and we use them here to test the distribution from random_normal().

Since these functions are defined in the POSIX and C99 standards, they
should in theory be available on all supported platforms. If that
turns out not to be the case, more work will be needed.

On all platforms tested so far, using extra_float_digits = -1 in the
regression tests is sufficient to allow for variations between
implementations. However, past experience has shown that there are
almost certainly going to be additional unexpected portability issues,
so these tests may well need further adjustments, based on the
buildfarm results.

Dean Rasheed, reviewed by Nathan Bossart and Thomas Munro.

Discussion: https://postgr.es/m/CAEZATCXv5fi7+Vu-POiyai+ucF95+YMcCMafxV+eZuN1B-=MkQ@mail.gmail.com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/d5d574146d71c362852748c82ba8b9c873f5bf24

Modified Files
--------------
doc/src/sgml/func.sgml               | 35 +++++++++++++++++++++++++++
src/backend/utils/adt/float.c        | 47 ++++++++++++++++++++++++++++++++++++
src/include/catalog/catversion.h     |  2 +-
src/include/catalog/pg_proc.dat      |  7 ++++++
src/test/regress/expected/float8.out | 39 ++++++++++++++++++++++++++++++
src/test/regress/expected/random.out | 32 ++++++++++++++++++++++++
src/test/regress/sql/float8.sql      | 14 +++++++++++
src/test/regress/sql/random.sql      | 30 +++++++++++++++++++++++
8 files changed, 205 insertions(+), 1 deletion(-)


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

Предыдущее
От: Michael Paquier
Дата:
Сообщение: pgsql: libpq: Add support for require_auth to control authorized auth m
Следующее
От: Michael Paquier
Дата:
Сообщение: pgsql: Rework design of functions in pg_walinspect