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

Function GetPgClassDescriptor

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

Source from the content-addressed store, hash-verified

4574}
4575
4576static TupleDesc
4577GetPgClassDescriptor(void)
4578{
4579 static TupleDesc pgclassdesc = NULL;
4580
4581 /* Already done? */
4582 if (pgclassdesc == NULL)
4583 pgclassdesc = BuildHardcodedDescriptor(Natts_pg_class,
4584 Desc_pg_class);
4585
4586 return pgclassdesc;
4587}
4588
4589static TupleDesc
4590GetPgIndexDescriptor(void)

Callers 1

RelationParseRelOptionsFunction · 0.85

Calls 1

BuildHardcodedDescriptorFunction · 0.85

Tested by

no test coverage detected