aboutsummaryrefslogtreecommitdiff
path: root/src/include/storage/large_object.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/storage/large_object.h')
-rw-r--r--src/include/storage/large_object.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/include/storage/large_object.h b/src/include/storage/large_object.h
index 146d6333f47..05d62331386 100644
--- a/src/include/storage/large_object.h
+++ b/src/include/storage/large_object.h
@@ -8,7 +8,7 @@
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: large_object.h,v 1.20 2001/01/24 19:43:27 momjian Exp $
+ * $Id: large_object.h,v 1.21 2001/03/22 04:01:07 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -27,10 +27,11 @@
* index_r holds an open-relation reference to pg_largeobject_loid_pn_index
*
* NOTE: before 7.1, heap_r and index_r held references to the separate
- * table and index of a specific large object. Now they all live in one rel.
+ * table and index of a specific large object. Now they all live in one rel.
*----------
*/
-typedef struct LargeObjectDesc {
+typedef struct LargeObjectDesc
+{
Oid id;
uint32 offset; /* current seek pointer */
int flags; /* locking info, etc */
@@ -58,7 +59,7 @@ typedef struct LargeObjectDesc {
* since clients will often be written to send data in power-of-2 blocks.
* This avoids unnecessary tuple updates caused by partial-page writes.
*/
-#define LOBLKSIZE (BLCKSZ / 4)
+#define LOBLKSIZE (BLCKSZ / 4)
/*