From 103022c339ecd2650190e3eb5622e4dda77caf7f Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Sun, 14 Nov 1999 16:22:59 +0000 Subject: Add index recreation suggestion to end of world error message. --- src/backend/access/nbtree/nbtree.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/backend/access/nbtree/nbtree.c') diff --git a/src/backend/access/nbtree/nbtree.c b/src/backend/access/nbtree/nbtree.c index d8d835f424..e2425ce754 100644 --- a/src/backend/access/nbtree/nbtree.c +++ b/src/backend/access/nbtree/nbtree.c @@ -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); -- cgit v1.2.1