7
7
*
8
8
*
9
9
* IDENTIFICATION
10
- * $Header: /cvsroot/pgsql/src/backend/utils/cache/syscache.c,v 1.16 1998/02/26 04:37:33 momjian Exp $
10
+ * $Header: /cvsroot/pgsql/src/backend/utils/cache/syscache.c,v 1.17 1998/05/09 23:45:29 thomas Exp $
11
11
*
12
12
* NOTES
13
13
* These routines allow the parser/planner/executor to perform
@@ -438,7 +438,7 @@ SearchSysCacheTuple(int cacheId,/* cache selection code */
438
438
#ifdef CACHEDEBUG
439
439
elog (DEBUG ,
440
440
"SearchSysCacheTuple: Search %s(%d) %d %d %d %d failed" ,
441
- ( * cacheinfo [cacheId ].name ) -> data ,
441
+ cacheinfo [cacheId ].name ,
442
442
cacheId , key1 , key2 , key3 , key4 );
443
443
#endif
444
444
return ((HeapTuple ) NULL );
@@ -610,7 +610,7 @@ TypeDefaultRetrieve(Oid typId)
610
610
{
611
611
#ifdef CACHEDEBUG
612
612
elog (DEBUG , "TypeDefaultRetrieve: Lookup in %s(%d) failed" ,
613
- ( * cacheinfo [TYPOID ].name ) -> data , TYPOID );
613
+ cacheinfo [TYPOID ].name , TYPOID );
614
614
#endif /* defined(CACHEDEBUG) */
615
615
return (NULL );
616
616
}
@@ -628,8 +628,8 @@ TypeDefaultRetrieve(Oid typId)
628
628
if (typDefault == (struct varlena * ) NULL )
629
629
{
630
630
#ifdef CACHEDEBUG
631
- elog (DEBUG , "TypeDefaultRetrieve: No extractable typdefault" ,
632
- ( * cacheinfo [TYPOID ].name ) -> data , TYPOID );
631
+ elog (DEBUG , "TypeDefaultRetrieve: No extractable typdefault in %s(%d) " ,
632
+ cacheinfo [TYPOID ].name , TYPOID );
633
633
#endif /* defined(CACHEDEBUG) */
634
634
return (NULL );
635
635
0 commit comments