diff options
author | Peter Eisentraut | 2019-11-21 17:00:07 +0000 |
---|---|---|
committer | Peter Eisentraut | 2019-11-21 17:29:21 +0000 |
commit | 2e4db241bfd3206bad8286f8ffc2db6bbdaefcdf (patch) | |
tree | 709eee963e46e556e7f6e54a2eceba236e816a9e /src/include/fmgr.h | |
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/[email protected]
Diffstat (limited to 'src/include/fmgr.h')
-rw-r--r-- | src/include/fmgr.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/include/fmgr.h b/src/include/fmgr.h index 29ae4674cc7..724ee73bded 100644 --- a/src/include/fmgr.h +++ b/src/include/fmgr.h @@ -446,7 +446,6 @@ typedef struct int funcmaxargs; /* FUNC_MAX_ARGS */ int indexmaxkeys; /* INDEX_MAX_KEYS */ int namedatalen; /* NAMEDATALEN */ - int float4byval; /* FLOAT4PASSBYVAL */ int float8byval; /* FLOAT8PASSBYVAL */ } Pg_magic_struct; @@ -458,7 +457,6 @@ typedef struct FUNC_MAX_ARGS, \ INDEX_MAX_KEYS, \ NAMEDATALEN, \ - FLOAT4PASSBYVAL, \ FLOAT8PASSBYVAL \ } |