v.25.6Improvement
Add IF EXISTS modifier to SYSTEM SYNC
AddIF EXISTSmodifier toSYSTEM SYNC REPLICA. #80810 (Raúl Marín).
Why it matters
This feature allows users to run theSYSTEM SYNC REPLICA command safely without raising an error if the specified replica does not exist, improving script robustness and error handling during replica synchronization.How to use it
Use theIF EXISTS modifier in the command syntax as follows:SYSTEM SYNC REPLICA <replica_name> ON CLUSTER <cluster_name> IF EXISTSThis ensures the command executes only if the replica exists, otherwise it simply skips synchronization without an error.