Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 4166f73

Browse files
committed
Fix 'd ' should be 'd'.
1 parent 823c393 commit 4166f73

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

src/backend/storage/large_object/inv_api.c

+1-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*
99
*
1010
* IDENTIFICATION
11-
* $Header: /cvsroot/pgsql/src/backend/storage/large_object/inv_api.c,v 1.35 1998/08/20 22:24:11 momjian Exp $
11+
* $Header: /cvsroot/pgsql/src/backend/storage/large_object/inv_api.c,v 1.36 1998/08/27 01:04:22 momjian Exp $
1212
*
1313
*-------------------------------------------------------------------------
1414
*/
@@ -497,7 +497,6 @@ inv_read(LargeObjectDesc *obj_desc, char *buf, int nbytes)
497497
obj_desc->offset += ncopy;
498498
}
499499

500-
/* that's it */
501500
return (nread);
502501
}
503502

src/include/catalog/pg_attribute.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
* Copyright (c) 1994, Regents of the University of California
99
*
10-
* $Id: pg_attribute.h,v 1.39 1998/08/26 17:12:11 momjian Exp $
10+
* $Id: pg_attribute.h,v 1.40 1998/08/27 01:04:23 momjian Exp $
1111
*
1212
* NOTES
1313
* the genbki.sh script reads this file and generates .bki
@@ -317,7 +317,7 @@ DATA(insert OID = 0 ( 1261 cmax 29 0 4 -6 0 -1 -1 t f i f f));
317317
*/
318318
#define Schema_pg_attribute \
319319
{ 1249, {"attrelid"}, 26, 0, 4, 1, 0, -1, -1, '\001', '\0', 'i', '\0', '\0' }, \
320-
{ 1249, {"attname"}, 19, 0, NAMEDATALEN, 2, 0, -1, -1, '\0', '\0', 'd ', '\0', '\0' }, \
320+
{ 1249, {"attname"}, 19, 0, NAMEDATALEN, 2, 0, -1, -1, '\0', '\0', 'd', '\0', '\0' }, \
321321
{ 1249, {"atttypid"}, 26, 0, 4, 3, 0, -1, -1, '\001', '\0', 'i', '\0', '\0' }, \
322322
{ 1249, {"attdisbursion"}, 700, 0, 4, 4, 0, -1, -1, '\0', '\0', 'i', '\0', '\0' }, \
323323
{ 1249, {"attlen"}, 21, 0, 2, 5, 0, -1, -1, '\001', '\0', 's', '\0', '\0' }, \

0 commit comments

Comments
 (0)