|
7 | 7 | *
|
8 | 8 | *
|
9 | 9 | * IDENTIFICATION
|
10 |
| - * $Header: /cvsroot/pgsql/src/backend/commands/vacuum.c,v 1.123 1999/11/07 23:08:02 momjian Exp $ |
| 10 | + * $Header: /cvsroot/pgsql/src/backend/commands/vacuum.c,v 1.124 1999/11/14 17:27:01 momjian Exp $ |
11 | 11 | *
|
12 | 12 | *-------------------------------------------------------------------------
|
13 | 13 | */
|
@@ -1976,7 +1976,7 @@ vc_scanoneind(Relation indrel, int num_tuples)
|
1976 | 1976 | ru1.ru_utime.tv_sec-ru0.ru_utime.tv_sec);
|
1977 | 1977 |
|
1978 | 1978 | if (nitups!=num_tuples)
|
1979 |
| -elog(NOTICE,"Index %s: NUMBER OF INDEX' TUPLES (%u) IS NOT THE SAME AS HEAP' (%u)", |
| 1979 | +elog(NOTICE,"Index %s: NUMBER OF INDEX' TUPLES (%u) IS NOT THE SAME AS HEAP' (%u).\nTry recreating the index.", |
1980 | 1980 | RelationGetRelationName(indrel),nitups,num_tuples);
|
1981 | 1981 |
|
1982 | 1982 | }/* vc_scanoneind */
|
@@ -2057,7 +2057,7 @@ vc_vaconeind(VPageList vpl, Relation indrel, int num_tuples, int keep_tuples)
|
2057 | 2057 | ru1.ru_utime.tv_sec-ru0.ru_utime.tv_sec);
|
2058 | 2058 |
|
2059 | 2059 | if (num_index_tuples!=num_tuples+keep_tuples)
|
2060 |
| -elog(NOTICE,"Index %s: NUMBER OF INDEX' TUPLES (%u) IS NOT THE SAME AS HEAP' (%u)", |
| 2060 | +elog(NOTICE,"Index %s: NUMBER OF INDEX' TUPLES (%u) IS NOT THE SAME AS HEAP' (%u).\nTry recreating the index.", |
2061 | 2061 | RelationGetRelationName(indrel),num_index_tuples,num_tuples);
|
2062 | 2062 |
|
2063 | 2063 | }/* vc_vaconeind */
|
|