diff --git a/src/backend/commands/analyze.c b/src/backend/commands/analyze.c index 7abf75dce66e0ad82075e68cfc302923e6a3a120..6b0a4e70549b1c6623c4f9d925b3213088b536ce 100644 --- a/src/backend/commands/analyze.c +++ b/src/backend/commands/analyze.c @@ -844,12 +844,11 @@ examine_attribute(Relation onerel, int attnum, Node *index_expr) stats->attrtypmod = attr->atttypmod; } - typtuple = SearchSysCache1(TYPEOID, ObjectIdGetDatum(stats->attrtypid)); + typtuple = SearchSysCacheCopy1(TYPEOID, + ObjectIdGetDatum(stats->attrtypid)); if (!HeapTupleIsValid(typtuple)) elog(ERROR, "cache lookup failed for type %u", stats->attrtypid); - stats->attrtype = (Form_pg_type) palloc(sizeof(FormData_pg_type)); - memcpy(stats->attrtype, GETSTRUCT(typtuple), sizeof(FormData_pg_type)); - ReleaseSysCache(typtuple); + stats->attrtype = (Form_pg_type) GETSTRUCT(typtuple); stats->anl_context = anl_context; stats->tupattnum = attnum; @@ -878,7 +877,7 @@ examine_attribute(Relation onerel, int attnum, Node *index_expr) if (!ok || stats->compute_stats == NULL || stats->minrows <= 0) { - pfree(stats->attrtype); + heap_freetuple(typtuple); pfree(stats->attr); pfree(stats); return NULL;