diff options
author | Peter Eisentraut <peter@eisentraut.org> | 2019-11-21 18:00:07 +0100 |
---|---|---|
committer | Peter Eisentraut <peter@eisentraut.org> | 2019-11-21 18:29:21 +0100 |
commit | 2e4db241bfd3206bad8286f8ffc2db6bbdaefcdf (patch) | |
tree | 709eee963e46e556e7f6e54a2eceba236e816a9e /doc/src | |
parent | 43a54a3bccd7dc6be798475214d561f3e93b3055 (diff) | |
download | postgresql-2e4db241bfd3206bad8286f8ffc2db6bbdaefcdf.tar.gz postgresql-2e4db241bfd3206bad8286f8ffc2db6bbdaefcdf.zip |
Remove configure --disable-float4-byval
This build option was only useful to maintain compatibility for
version-0 functions, but those are no longer supported, so this option
can be removed.
float4 is now always pass-by-value; the pass-by-reference code path is
completely removed.
Discussion: https://www.postgresql.org/message-id/flat/f3e1e576-2749-bbd7-2d57-3f9dcf75255a@2ndquadrant.com
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/func.sgml | 5 | ||||
-rw-r--r-- | doc/src/sgml/installation.sgml | 12 |
2 files changed, 0 insertions, 17 deletions
diff --git a/doc/src/sgml/func.sgml b/doc/src/sgml/func.sgml index e8082c05c95..57a1539506d 100644 --- a/doc/src/sgml/func.sgml +++ b/doc/src/sgml/func.sgml @@ -19965,11 +19965,6 @@ SELECT collation for ('foo' COLLATE "de_DE"); </row> <row> - <entry><literal>float4_pass_by_value</literal></entry> - <entry><type>boolean</type></entry> - </row> - - <row> <entry><literal>float8_pass_by_value</literal></entry> <entry><type>boolean</type></entry> </row> diff --git a/doc/src/sgml/installation.sgml b/doc/src/sgml/installation.sgml index d8494e293bd..b4d222295e1 100644 --- a/doc/src/sgml/installation.sgml +++ b/doc/src/sgml/installation.sgml @@ -1205,18 +1205,6 @@ build-postgresql: </varlistentry> <varlistentry> - <term><option>--disable-float4-byval</option></term> - <listitem> - <para> - Disable passing float4 values <quote>by value</quote>, causing them - to be passed <quote>by reference</quote> instead. This option costs - performance, but may be needed for compatibility with very old - user-defined functions written in C. - </para> - </listitem> - </varlistentry> - - <varlistentry> <term><option>--disable-float8-byval</option></term> <listitem> <para> |