* RelationMapInitializePhase3 * * This is called as soon as we have determined MyDatabaseId and set up * DatabasePath. At this point we should be able to read the local map file. */
| 629 | * DatabasePath. At this point we should be able to read the local map file. |
| 630 | */ |
| 631 | void |
| 632 | RelationMapInitializePhase3(void) |
| 633 | { |
| 634 | /* |
| 635 | * In bootstrap mode, the map file isn't there yet, so do nothing. |
| 636 | */ |
| 637 | if (IsBootstrapProcessingMode()) |
| 638 | return; |
| 639 | |
| 640 | /* |
| 641 | * Load the local map file, die on error. |
| 642 | */ |
| 643 | load_relmap_file(false, false); |
| 644 | } |
| 645 | |
| 646 | /* |
| 647 | * EstimateRelationMapSpace |
no test coverage detected