1
0
mirror of https://github.com/postgres/postgres.git synced 2025-10-19 15:49:24 +03:00

Fix obsolete references to postgres.h in comments.

Oversights in commits d08741eab5 and d952373a98.

Reviewed-by: Chao Li <li.evan.chao@gmail.com>
Discussion: https://postgr.es/m/aMxbfSJ2wLWd32x-%40nathan
This commit is contained in:
Nathan Bossart
2025-09-19 09:19:03 -05:00
parent ac7c8e412c
commit 18cdf5932a
5 changed files with 5 additions and 5 deletions

View File

@@ -634,7 +634,7 @@ BITMAPLEN(int NATTS)
* MaxAttrSize is a somewhat arbitrary upper limit on the declared size of * MaxAttrSize is a somewhat arbitrary upper limit on the declared size of
* data fields of char(n) and similar types. It need not have anything * data fields of char(n) and similar types. It need not have anything
* directly to do with the *actual* upper limit of varlena values, which * directly to do with the *actual* upper limit of varlena values, which
* is currently 1Gb (see TOAST structures in postgres.h). I've set it * is currently 1Gb (see TOAST structures in varatt.h). I've set it
* at 10Mb which seems like a reasonable number --- tgl 8/6/00. * at 10Mb which seems like a reasonable number --- tgl 8/6/00.
*/ */
#define MaxAttrSize (10 * 1024 * 1024) #define MaxAttrSize (10 * 1024 * 1024)

View File

@@ -659,7 +659,7 @@ typedef uint32 CommandId;
* representation is no longer convenient. It's recommended that code always * representation is no longer convenient. It's recommended that code always
* use macros VARDATA_ANY, VARSIZE_ANY, VARSIZE_ANY_EXHDR, VARDATA, VARSIZE, * use macros VARDATA_ANY, VARSIZE_ANY, VARSIZE_ANY_EXHDR, VARDATA, VARSIZE,
* and SET_VARSIZE instead of relying on direct mentions of the struct fields. * and SET_VARSIZE instead of relying on direct mentions of the struct fields.
* See postgres.h for details of the TOASTed form. * See varatt.h for details of the TOASTed form.
* ---------------- * ----------------
*/ */
struct varlena struct varlena

View File

@@ -95,7 +95,7 @@ typedef struct ExpandedObjectMethods
* But note that these pointers are just a convenience; a pointer object * But note that these pointers are just a convenience; a pointer object
* appearing somewhere else would still be legal. * appearing somewhere else would still be legal.
* *
* The typedef declaration for this appears in postgres.h. * The typedef declaration for this appears in varatt.h.
*/ */
struct ExpandedObjectHeader struct ExpandedObjectHeader
{ {

View File

@@ -30,7 +30,7 @@
* *
* palloc() enforces MaxAllocSize, chosen to correspond to the limiting size * palloc() enforces MaxAllocSize, chosen to correspond to the limiting size
* of varlena objects under TOAST. See VARSIZE_4B() and related macros in * of varlena objects under TOAST. See VARSIZE_4B() and related macros in
* postgres.h. Many datatypes assume that any allocatable size can be * varatt.h. Many datatypes assume that any allocatable size can be
* represented in a varlena header. This limit also permits a caller to use * represented in a varlena header. This limit also permits a caller to use
* an "int" variable for an index into or length of an allocation. Callers * an "int" variable for an index into or length of an allocation. Callers
* careful to avoid these hazards can access the higher limit with * careful to avoid these hazards can access the higher limit with

View File

@@ -20,7 +20,7 @@
#include "fmgr.h" #include "fmgr.h"
/* /*
* Modeled on struct varlena from postgres.h, but data type is bits8. * Modeled on struct varlena from c.h, but data type is bits8.
* *
* Caution: if bit_len is not a multiple of BITS_PER_BYTE, the low-order * Caution: if bit_len is not a multiple of BITS_PER_BYTE, the low-order
* bits of the last byte of bit_dat[] are unused and MUST be zeroes. * bits of the last byte of bit_dat[] are unused and MUST be zeroes.