pg_resetwal: Use separate flags for whether an option is given Currently, we use special values that are otherwise invalid for each option to indicate "option was not given". Replace that with separate boolean variables for each option. It seems more clear to be explicit.
We were already doing that for the -m option, because there were no invalid values for nextMulti that we could use (since commit 94939c5f3a). Reviewed-by: Chao Li <[email protected]> Discussion: https://www.postgresql.org/message-id/[email protected] Branch ------ master Details ------- https://git.postgresql.org/pg/commitdiff/978cf02bb8caeafd6fe5178e67016ffd898599b4 Modified Files -------------- src/bin/pg_resetwal/pg_resetwal.c | 166 ++++++++++++++++++++++---------------- 1 file changed, 95 insertions(+), 71 deletions(-)
