|
7 | 7 | *
|
8 | 8 | *
|
9 | 9 | * IDENTIFICATION
|
10 |
| - * $Header: /cvsroot/pgsql/src/backend/commands/vacuum.c,v 1.128 1999/11/29 04:43:15 tgl Exp $ |
| 10 | + * $Header: /cvsroot/pgsql/src/backend/commands/vacuum.c,v 1.129 1999/12/01 00:29:54 momjian Exp $ |
11 | 11 | *
|
12 | 12 | *-------------------------------------------------------------------------
|
13 | 13 | */
|
@@ -1997,7 +1997,8 @@ vc_scanoneind(Relation indrel, int num_tuples)
|
1997 | 1997 | ru1.ru_utime.tv_sec - ru0.ru_utime.tv_sec);
|
1998 | 1998 |
|
1999 | 1999 | if (nitups != num_tuples)
|
2000 |
| - elog(NOTICE, "Index %s: NUMBER OF INDEX' TUPLES (%u) IS NOT THE SAME AS HEAP' (%u).\n\tTry recreating the index.", |
| 2000 | + elog(NOTICE, "Index %s: NUMBER OF INDEX' TUPLES (%u) IS NOT THE SAME AS HEAP' (%u).\ |
| 2001 | +\n\tRecreate the index.", |
2001 | 2002 | RelationGetRelationName(indrel), nitups, num_tuples);
|
2002 | 2003 |
|
2003 | 2004 | } /* vc_scanoneind */
|
@@ -2078,7 +2079,8 @@ vc_vaconeind(VPageList vpl, Relation indrel, int num_tuples, int keep_tuples)
|
2078 | 2079 | ru1.ru_utime.tv_sec - ru0.ru_utime.tv_sec);
|
2079 | 2080 |
|
2080 | 2081 | if (num_index_tuples != num_tuples + keep_tuples)
|
2081 |
| - elog(NOTICE, "Index %s: NUMBER OF INDEX' TUPLES (%u) IS NOT THE SAME AS HEAP' (%u).\n\tTry recreating the index.", |
| 2082 | + elog(NOTICE, "Index %s: NUMBER OF INDEX' TUPLES (%u) IS NOT THE SAME AS HEAP' (%u).\ |
| 2083 | +\n\tRecreate the index.", |
2082 | 2084 | RelationGetRelationName(indrel), num_index_tuples, num_tuples);
|
2083 | 2085 |
|
2084 | 2086 | } /* vc_vaconeind */
|
|
0 commit comments