diff options
| author | Tom Lane | 2007-04-30 21:01:53 +0000 |
|---|---|---|
| committer | Tom Lane | 2007-04-30 21:01:53 +0000 |
| commit | c4320619635800a6116a02eee08b232c5abea266 (patch) | |
| tree | 3db9b7562baf005c9ccf4976c293a4328dfa9509 /src/include/utils | |
| parent | 641912b4d17fd214a5e5bae4e7bb9ddbc28b144b (diff) | |
Change the timestamps recorded in transaction commit/abort xlog records
from time_t to TimestampTz representation. This provides full gettimeofday()
resolution of the timestamps, which might be useful when attempting to
do point-in-time recovery --- previously it was not possible to specify
the stop point with sub-second resolution. But mostly this is to get
rid of TimestampTz-to-time_t conversion overhead during commit. Per my
proposal of a day or two back.
Diffstat (limited to 'src/include/utils')
| -rw-r--r-- | src/include/utils/timestamp.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/include/utils/timestamp.h b/src/include/utils/timestamp.h index 594cd61e884..5923c354936 100644 --- a/src/include/utils/timestamp.h +++ b/src/include/utils/timestamp.h @@ -6,7 +6,7 @@ * Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/utils/timestamp.h,v 1.68 2007/04/30 03:23:49 tgl Exp $ + * $PostgreSQL: pgsql/src/include/utils/timestamp.h,v 1.69 2007/04/30 21:01:53 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -318,6 +318,8 @@ extern bool TimestampDifferenceExceeds(TimestampTz start_time, extern TimestampTz time_t_to_timestamptz(time_t tm); extern time_t timestamptz_to_time_t(TimestampTz t); +extern const char *timestamptz_to_str(TimestampTz t); + extern int tm2timestamp(struct pg_tm * tm, fsec_t fsec, int *tzp, Timestamp *dt); extern int timestamp2tm(Timestamp dt, int *tzp, struct pg_tm * tm, fsec_t *fsec, char **tzn, pg_tz *attimezone); |
