diff options
| author | Tom Lane | 2005-06-29 22:51:57 +0000 |
|---|---|---|
| committer | Tom Lane | 2005-06-29 22:51:57 +0000 |
| commit | b5f7cff84f57a189ed5c9dd59efe8d2568649d0d (patch) | |
| tree | 77b5a25a7c4a62145ba89a578018121b3246b82d /src/backend/bootstrap | |
| parent | c33d575899593a46a5b9a76e4e0ef6f9d81e55dd (diff) | |
Clean up the rather historically encumbered interface to now() and
current time: provide a GetCurrentTimestamp() function that returns
current time in the form of a TimestampTz, instead of separate time_t
and microseconds fields. This is what all the callers really want
anyway, and it eliminates low-level dependencies on AbsoluteTime,
which is a deprecated datatype that will have to disappear eventually.
Diffstat (limited to 'src/backend/bootstrap')
| -rw-r--r-- | src/backend/bootstrap/bootparse.y | 3 | ||||
| -rw-r--r-- | src/backend/bootstrap/bootscanner.l | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/src/backend/bootstrap/bootparse.y b/src/backend/bootstrap/bootparse.y index 1945c4074d9..fc42ba83af3 100644 --- a/src/backend/bootstrap/bootparse.y +++ b/src/backend/bootstrap/bootparse.y @@ -9,7 +9,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/bootstrap/bootparse.y,v 1.76 2005/04/14 01:38:15 tgl Exp $ + * $PostgreSQL: pgsql/src/backend/bootstrap/bootparse.y,v 1.77 2005/06/29 22:51:54 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -47,7 +47,6 @@ #include "storage/off.h" #include "storage/smgr.h" #include "tcop/dest.h" -#include "utils/nabstime.h" #include "utils/rel.h" #define atooid(x) ((Oid) strtoul((x), NULL, 10)) diff --git a/src/backend/bootstrap/bootscanner.l b/src/backend/bootstrap/bootscanner.l index 2cec26078af..5c2fce29f0e 100644 --- a/src/backend/bootstrap/bootscanner.l +++ b/src/backend/bootstrap/bootscanner.l @@ -9,7 +9,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/bootstrap/bootscanner.l,v 1.39 2005/03/11 19:13:42 momjian Exp $ + * $PostgreSQL: pgsql/src/backend/bootstrap/bootscanner.l,v 1.40 2005/06/29 22:51:54 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -34,7 +34,6 @@ #include "storage/fd.h" #include "storage/itemptr.h" #include "storage/off.h" -#include "utils/nabstime.h" #include "utils/rel.h" /* Not needed now that this file is compiled as part of bootparse. */ |
