pg_resetxlog sentences - Mailing list pgsql-hackers

From Euler Taveira
Subject pg_resetxlog sentences
Date
Msg-id 55F8CB4F.6020401@timbira.com.br
Whole thread Raw
Responses Re: pg_resetxlog sentences  (Robert Haas <robertmhaas@gmail.com>)
List pgsql-hackers
Hi,

While updating translations, I came across those almost similar sentences.

pg_controldata.c

273     printf(_("Latest checkpoint's oldestCommitTs:   %u\n"),
274            ControlFile.checkPointCopy.oldestCommitTs);

pg_resetxlog.c

  668     printf(_("Latest checkpoint's oldest CommitTs:  %u\n"),
  669            ControlFile.checkPointCopy.oldestCommitTs);
  670     printf(_("Latest checkpoint's newest CommitTs:  %u\n"),
  671            ControlFile.checkPointCopy.newestCommitTs);

To be consistent, let's change pg_resetxlog to mimic pg_controldata
sentence. Patch is attached. It is new in 9.5 so backpatch is needed.


--
    Euler Taveira                   Timbira - http://www.timbira.com.br/
    PostgreSQL: Consultoria, Desenvolvimento, Suporte 24x7 e Treinamento

Attachment

pgsql-hackers by date:

Previous
From: Tatsuo Ishii
Date:
Subject: Re: Unicode mapping scripts cleanup
Next
From: Kouhei Kaigai
Date:
Subject: Re: What is the extent of FDW join pushdown support in 9.5?