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

Commit afdc54a

Browse files
committed
Oops...I used Relation->rd_fd->relname exactly, instead of using the actual
variable name *blush* *grin*
1 parent 57a40ab commit afdc54a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/backend/access/nbtree/nbtsearch.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/access/nbtree/nbtsearch.c,v 1.33 1998/04/10 21:59:30 scrappy Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/access/nbtree/nbtsearch.c,v 1.34 1998/04/10 22:07:41 scrappy Exp $
1111
*
1212
*-------------------------------------------------------------------------
1313
*/
@@ -220,7 +220,7 @@ _bt_moveright(Relation rel,
220220
PageGetItemId(page, P_FIRSTKEY),
221221
BTEqualStrategyNumber))
222222
elog(FATAL, "btree: BTP_CHAIN flag was expected in %s (access = %s)",
223-
Relation->rd_rel->relname, access ? "bt_write" : "bt_read");
223+
rel->rd_rel->relname, access ? "bt_write" : "bt_read");
224224
if (_bt_skeycmp(rel, keysz, scankey, page,
225225
PageGetItemId(page, offmax),
226226
BTEqualStrategyNumber))

0 commit comments

Comments
 (0)