diff options
Diffstat (limited to 'src/include/catalog/pg_largeobject.h')
-rw-r--r-- | src/include/catalog/pg_largeobject.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/include/catalog/pg_largeobject.h b/src/include/catalog/pg_largeobject.h index b89d4ec1a9..d442ec4e4a 100644 --- a/src/include/catalog/pg_largeobject.h +++ b/src/include/catalog/pg_largeobject.h @@ -32,6 +32,7 @@ CATALOG(pg_largeobject,2613) BKI_WITHOUT_OIDS { Oid loid; /* Identifier of large object */ int4 pageno; /* Page number (starting from 0) */ + /* data has variable length, but we allow direct access; see inv_api.c */ bytea data; /* Data for page (may be zero-length) */ } FormData_pg_largeobject; |