* Ensure that the given metadata table is replicated on all nodes * as applicable. * Returns true if something changed and was replicated. */
| 463 | * Returns true if something changed and was replicated. |
| 464 | */ |
| 465 | bool |
| 466 | EnsureMetadataTableReplicated(const char *tableName) |
| 467 | { |
| 468 | if (ensure_metadata_table_replicated_hook != NULL) |
| 469 | { |
| 470 | return ensure_metadata_table_replicated_hook(tableName); |
| 471 | } |
| 472 | |
| 473 | /* Single node default - it's always replicated */ |
| 474 | return false; |
| 475 | } |
| 476 | |
| 477 | |
| 478 | /* |
no outgoing calls
no test coverage detected