diff options
author | Peter Eisentraut <peter@eisentraut.org> | 2019-11-27 11:21:02 +0100 |
---|---|---|
committer | Peter Eisentraut <peter@eisentraut.org> | 2019-11-27 12:27:20 +0100 |
commit | 4513d8b07bf342028ca95250b6e1d759858abdd3 (patch) | |
tree | 35612e4af617a4319e619267bd147fe817b8d28d /doc/src | |
parent | 47a3c7fa06538c181be815db44b5d7e8efe696ef (diff) | |
download | postgresql-4513d8b07bf342028ca95250b6e1d759858abdd3.tar.gz postgresql-4513d8b07bf342028ca95250b6e1d759858abdd3.zip |
Move configure --disable-float8-byval to pg_config_manual.h
This build option was once useful to maintain compatibility with
version-0 functions, but those are no longer supported, so this option
is no longer useful for end users. We keep the option available to
developers in pg_config_manual.h so that it is easy to test the
pass-by-reference code paths without having to fire up a 32-bit
machine.
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/installation.sgml | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/doc/src/sgml/installation.sgml b/doc/src/sgml/installation.sgml index b4d222295e1..9c10a897f19 100644 --- a/doc/src/sgml/installation.sgml +++ b/doc/src/sgml/installation.sgml @@ -1205,22 +1205,6 @@ build-postgresql: </varlistentry> <varlistentry> - <term><option>--disable-float8-byval</option></term> - <listitem> - <para> - Disable passing float8 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. - Note that this option affects not only float8, but also int8 and some - related types such as timestamp. - On 32-bit platforms, <option>--disable-float8-byval</option> is the default - and it is not allowed to select <option>--enable-float8-byval</option>. - </para> - </listitem> - </varlistentry> - - <varlistentry> <term><option>--disable-spinlocks</option></term> <listitem> <para> |