Commit a5150dc6 authored by Tom Lane's avatar Tom Lane

Fix typo so it actually compiles...

parent 7a203a3f
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/access/nbtree/nbtpage.c,v 1.32 1999/11/14 16:22:59 momjian Exp $ * $Header: /cvsroot/pgsql/src/backend/access/nbtree/nbtpage.c,v 1.33 1999/11/14 19:01:04 tgl Exp $
* *
* NOTES * NOTES
* Postgres btree pages look like ordinary relation pages. The opaque * Postgres btree pages look like ordinary relation pages. The opaque
...@@ -501,8 +501,8 @@ _bt_getstackbuf(Relation rel, BTStack stack, int access) ...@@ -501,8 +501,8 @@ _bt_getstackbuf(Relation rel, BTStack stack, int access)
for (;;) for (;;)
{ {
blkno = opaque->btpo_next; blkno = opaque->btpo_next;
if (P_RIGHTMOST(opaque))R if (P_RIGHTMOST(opaque))
elog(FATAL, "my bits moved right off the end of the world!\nTry recreating the index."); elog(FATAL, "my bits moved right off the end of the world!\n\tTry recreating the index.");
_bt_relbuf(rel, buf, access); _bt_relbuf(rel, buf, access);
buf = _bt_getbuf(rel, blkno, access); buf = _bt_getbuf(rel, blkno, access);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment