Re: int64 timestamp patch for contrib/pg_controldata - Mailing list pgsql-patches

From Bruce Momjian
Subject Re: int64 timestamp patch for contrib/pg_controldata
Date
Msg-id 200207310334.g6V3Y2N25868@candle.pha.pa.us
Whole thread Raw
In response to int64 timestamp patch for contrib/pg_controldata  (sugita@sra.co.jp)
List pgsql-patches
Your patch has been added to the PostgreSQL unapplied patches list at:

    http://candle.pha.pa.us/cgi-bin/pgpatches

I will try to apply it within the next 48 hours.

---------------------------------------------------------------------------


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

pgsql-patches by date:

Previous
From: Bruce Momjian
Date:
Subject: Re: small psql patch - show Schema name for \dt \dv \dS
Next
From: Tatsuo Ishii
Date:
Subject: SQL99 CONVERT patch