diff options
author | Tom Lane | 2024-10-28 18:39:01 +0000 |
---|---|---|
committer | Tom Lane | 2024-10-28 18:39:01 +0000 |
commit | 11b7de4a784135d7a9bce4a29ede092797749efc (patch) | |
tree | ca09a0d69153b39699e83befc1c992e86cdc0c09 /src/common/saslprep.c | |
parent | bd2843167200f2607972c0defb916daa79ca265f (diff) |
Unify src/common/'s definitions of MaxAllocSize.
As threatened in the previous patch, define MaxAllocSize in
src/include/common/fe_memutils.h rather than having several
copies of it in different src/common/*.c files. This also
provides an opportunity to document it better.
While this would probably be safe to back-patch, I'll refrain
(for now anyway).
Diffstat (limited to 'src/common/saslprep.c')
-rw-r--r-- | src/common/saslprep.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/common/saslprep.c b/src/common/saslprep.c index 0a840352802..5d84d13c6d2 100644 --- a/src/common/saslprep.c +++ b/src/common/saslprep.c @@ -24,10 +24,6 @@ #include "utils/memutils.h" #else #include "postgres_fe.h" - -/* It's possible we could use a different value for this in frontend code */ -#define MaxAllocSize ((Size) 0x3fffffff) /* 1 gigabyte - 1 */ - #endif #include "common/saslprep.h" |