2361 Oid atttypid = InvalidOid;
2362 Form_pg_attribute att_form;
2365 HeapTuple att_tuple = SearchSysCache2(ATTNUM,
2366 ObjectIdGetDatum(index_oid),
2367 Int16GetDatum(index_attnum));
2369 if (!HeapTupleIsValid(att_tuple))
2370 elog(ERROR,
"cache lookup failed for index %u attribute %d", index_oid, index_attnum);
2372 att_form = (Form_pg_attribute) GETSTRUCT(att_tuple);
2373 atttypid = att_form->atttypid;
2374 ReleaseSysCache(att_tuple);