]> granicus.if.org Git - postgresql/commitdiff
Add index recreation suggestion to end of world error message.
authorBruce Momjian <bruce@momjian.us>
Sun, 14 Nov 1999 16:22:59 +0000 (16:22 +0000)
committerBruce Momjian <bruce@momjian.us>
Sun, 14 Nov 1999 16:22:59 +0000 (16:22 +0000)
src/backend/access/nbtree/nbtpage.c
src/backend/access/nbtree/nbtree.c

index 82550ae1b0670d74f247329154e82ee5a3781150..9959fcbd22e2dce227e23419e2d376694dd27bdf 100644 (file)
@@ -8,7 +8,7 @@
  *
  *
  * IDENTIFICATION
- *       $Header: /cvsroot/pgsql/src/backend/access/nbtree/nbtpage.c,v 1.31 1999/08/08 20:12:50 tgl Exp $
+ *       $Header: /cvsroot/pgsql/src/backend/access/nbtree/nbtpage.c,v 1.32 1999/11/14 16:22:59 momjian Exp $
  *
  *     NOTES
  *        Postgres btree pages look like ordinary relation pages.      The opaque
@@ -501,8 +501,8 @@ _bt_getstackbuf(Relation rel, BTStack stack, int access)
        for (;;)
        {
                blkno = opaque->btpo_next;
-               if (P_RIGHTMOST(opaque))
-                       elog(FATAL, "my bits moved right off the end of the world!");
+               if (P_RIGHTMOST(opaque))R
+                       elog(FATAL, "my bits moved right off the end of the world!\nTry recreating the index.");
 
                _bt_relbuf(rel, buf, access);
                buf = _bt_getbuf(rel, blkno, access);
index d8d835f424bf9d88fdfefd55ab946ec1ed9525e1..e2425ce7545561eaccc631581c175c49c58ee1b7 100644 (file)
@@ -11,7 +11,7 @@
  * Copyright (c) 1994, Regents of the University of California
  *
  * IDENTIFICATION
- *       $Header: /cvsroot/pgsql/src/backend/access/nbtree/nbtree.c,v 1.47 1999/10/17 22:15:03 tgl Exp $
+ *       $Header: /cvsroot/pgsql/src/backend/access/nbtree/nbtree.c,v 1.48 1999/11/14 16:22:59 momjian Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -664,7 +664,7 @@ _bt_restscan(IndexScanDesc scan)
        for (;;)
        {
                if (P_RIGHTMOST(opaque))
-                       elog(FATAL, "_bt_restscan: my bits moved right off the end of the world!");
+                       elog(FATAL, "_bt_restscan: my bits moved right off the end of the world!\nTry recreating the index.");
 
                blkno = opaque->btpo_next;
                _bt_relbuf(rel, buf, BT_READ);