]> granicus.if.org Git - postgresql/commitdiff
If RelationBuildDesc() fails to open a critical system index, PANIC with
authorTom Lane <tgl@sss.pgh.pa.us>
Wed, 27 Feb 2008 17:44:41 +0000 (17:44 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Wed, 27 Feb 2008 17:44:41 +0000 (17:44 +0000)
a relevant error message instead of just dumping core.  Odd that nobody
reported this before Darren Reed.

src/backend/utils/cache/relcache.c

index 9334cb38cd97a0da557bcc39b23df7e0c5a9efe4..1336f47389a4f98ece6b7ee496a301db5d48e293 100644 (file)
@@ -8,7 +8,7 @@
  *
  *
  * IDENTIFICATION
- *       $PostgreSQL: pgsql/src/backend/utils/cache/relcache.c,v 1.230.2.4 2006/11/05 23:40:38 tgl Exp $
+ *       $PostgreSQL: pgsql/src/backend/utils/cache/relcache.c,v 1.230.2.5 2008/02/27 17:44:41 tgl Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -2239,7 +2239,10 @@ RelationCacheInitializePhase2(void)
 
 #define LOAD_CRIT_INDEX(indexoid) \
                do { \
-                       ird = RelationBuildDesc((indexoid), NULL); \
+                       ird = RelationBuildDesc(indexoid, NULL); \
+                       if (ird == NULL) \
+                               elog(PANIC, "could not open critical system index %u", \
+                                        indexoid); \
                        ird->rd_isnailed = true; \
                        ird->rd_refcnt = 1; \
                } while (0)