This has already been applied by Thomas Lockhart.
---------------------------------------------------------------------------
sugita@sra.co.jp wrote:
> This small patch makes the pg_controldata display the enableIntTimes field of
> ControlFileData.
>
> ? int64-timestamp.patch
> ? make-install.out
> ? make.out
> ? pg_controldata
> Index: pg_controldata.c
> ===================================================================
> RCS file: /projects/cvsroot/pgsql/contrib/pg_controldata/pg_controldata.c,v
> retrieving revision 1.5
> diff -u -3 -p -r1.5 pg_controldata.c
> --- pg_controldata.c 2001/10/25 05:49:19 1.5
> +++ pg_controldata.c 2002/06/22 07:49:30
> @@ -108,6 +108,7 @@ main(int argc, char *argv[])
> "Time of latest checkpoint: %s\n"
> "Database block size: %u\n"
> "Blocks per segment of large relation: %u\n"
> + "Internal time format: %s\n"
> "LC_COLLATE: %s\n"
> "LC_CTYPE: %s\n",
>
> @@ -131,6 +132,7 @@ main(int argc, char *argv[])
> ckpttime_str,
> ControlFile.blcksz,
> ControlFile.relseg_size,
> + ControlFile.enableIntTimes = TRUE ? "64 bits integer" : "8 bytes double",
> ControlFile.lc_collate,
> ControlFile.lc_ctype);
>
>
> ---------------------------(end of broadcast)---------------------------
> TIP 6: Have you searched our list archives?
>
> http://archives.postgresql.org
--
Bruce Momjian | http://candle.pha.pa.us
pgman@candle.pha.pa.us | (610) 853-3000
+ If your life is a hard drive, | 830 Blythe Avenue
+ Christ can be your backup. | Drexel Hill, Pennsylvania 19026