* SerializeRelationMap * * Serialize active shared and local relmap state for parallel workers. */
| 661 | * Serialize active shared and local relmap state for parallel workers. |
| 662 | */ |
| 663 | void |
| 664 | SerializeRelationMap(Size maxSize, char *startAddress) |
| 665 | { |
| 666 | SerializedActiveRelMaps *relmaps; |
| 667 | |
| 668 | Assert(maxSize >= EstimateRelationMapSpace()); |
| 669 | |
| 670 | relmaps = (SerializedActiveRelMaps *) startAddress; |
| 671 | relmaps->active_shared_updates = active_shared_updates; |
| 672 | relmaps->active_local_updates = active_local_updates; |
| 673 | } |
| 674 | |
| 675 | /* |
| 676 | * RestoreRelationMap |
no test coverage detected