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 /src/bin/pg_controldata | |
| parent | 43a54a3bccd7dc6be798475214d561f3e93b3055 (diff) | |
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 'src/bin/pg_controldata')
| -rw-r--r-- | src/bin/pg_controldata/pg_controldata.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/bin/pg_controldata/pg_controldata.c b/src/bin/pg_controldata/pg_controldata.c index b14767f8b60..19e21ab4912 100644 --- a/src/bin/pg_controldata/pg_controldata.c +++ b/src/bin/pg_controldata/pg_controldata.c @@ -327,8 +327,6 @@ main(int argc, char *argv[]) /* This is no longer configurable, but users may still expect to see it: */ printf(_("Date/time type storage: %s\n"), _("64-bit integers")); - printf(_("Float4 argument passing: %s\n"), - (ControlFile->float4ByVal ? _("by value") : _("by reference"))); printf(_("Float8 argument passing: %s\n"), (ControlFile->float8ByVal ? _("by value") : _("by reference"))); printf(_("Data page checksum version: %u\n"), |
