diff options
author | Marc G. Fournier | 1996-09-23 08:36:39 +0000 |
---|---|---|
committer | Marc G. Fournier | 1996-09-23 08:36:39 +0000 |
commit | 3bf2b361f0196aa370030056e22a7920ee739910 (patch) | |
tree | c3c669f5183393c0fb42d64e2ae68f8463bca9d0 | |
parent | d00f621d7b07d3ea7b5560b8c261353a94ee3a0f (diff) |
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
-rw-r--r-- | src/include/access/heapam.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/access/heapam.h b/src/include/access/heapam.h index 0ed60982eb9..342dbab2a2d 100644 --- a/src/include/access/heapam.h +++ b/src/include/access/heapam.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: heapam.h,v 1.1 1996/08/27 21:50:13 scrappy Exp $ + * $Id: heapam.h,v 1.2 1996/09/23 08:36:39 scrappy Exp $ * *------------------------------------------------------------------------- */ @@ -125,7 +125,7 @@ extern int heap_attisnull(HeapTuple tup, int attnum); extern int heap_sysattrlen(AttrNumber attno); extern bool heap_sysattrbyval(AttrNumber attno); extern char *heap_getsysattr(HeapTuple tup, Buffer b, int attnum); -extern char *fastgetattr(HeapTuple tup, unsigned attnum, +extern char *fastgetattr(HeapTuple tup, int attnum, TupleDesc att, bool *isnull); extern char *heap_getattr(HeapTuple tup, Buffer b, int attnum, TupleDesc att, bool *isnull); |