MCPcopy Create free account
hub / github.com/apache/cloudberry / GetPgIndexDescriptor

Function GetPgIndexDescriptor

src/backend/utils/cache/relcache.c:4589–4600  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4587}
4588
4589static TupleDesc
4590GetPgIndexDescriptor(void)
4591{
4592 static TupleDesc pgindexdesc = NULL;
4593
4594 /* Already done? */
4595 if (pgindexdesc == NULL)
4596 pgindexdesc = BuildHardcodedDescriptor(Natts_pg_index,
4597 Desc_pg_index);
4598
4599 return pgindexdesc;
4600}
4601
4602/*
4603 * Load any default attribute value definitions for the relation.

Calls 1

BuildHardcodedDescriptorFunction · 0.85

Tested by

no test coverage detected