| 4587 | } |
| 4588 | |
| 4589 | static TupleDesc |
| 4590 | GetPgIndexDescriptor(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. |
no test coverage detected