Skip to content

Commit 3bf2b36

Browse files
committed
Date: Sun, 22 Sep 1996 13:47:39 -0400 (EDT)
From: Bruce Momjian <maillist@candle.pha.pa.us> To: Postgres95-development <pg95-dev@ki.net> Subject: [PG95-DEV] 2.0 patch for fastgetattr
1 parent d00f621 commit 3bf2b36

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/include/access/heapam.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
*
77
* Copyright (c) 1994, Regents of the University of California
88
*
9-
* $Id: heapam.h,v 1.1 1996/08/27 21:50:13 scrappy Exp $
9+
* $Id: heapam.h,v 1.2 1996/09/23 08:36:39 scrappy Exp $
1010
*
1111
*-------------------------------------------------------------------------
1212
*/
@@ -125,7 +125,7 @@ extern int heap_attisnull(HeapTuple tup, int attnum);
125125
extern int heap_sysattrlen(AttrNumber attno);
126126
extern bool heap_sysattrbyval(AttrNumber attno);
127127
extern char *heap_getsysattr(HeapTuple tup, Buffer b, int attnum);
128-
extern char *fastgetattr(HeapTuple tup, unsigned attnum,
128+
extern char *fastgetattr(HeapTuple tup, int attnum,
129129
TupleDesc att, bool *isnull);
130130
extern char *heap_getattr(HeapTuple tup, Buffer b, int attnum,
131131
TupleDesc att, bool *isnull);

0 commit comments

Comments
 (0)