aboutsummaryrefslogtreecommitdiff
path: root/src/backend/utils/adt/timestamp.c
diff options
context:
space:
mode:
authorKevin Grittner <kgrittn@postgresql.org>2015-06-28 12:43:59 -0500
committerKevin Grittner <kgrittn@postgresql.org>2015-06-28 12:43:59 -0500
commitcca8ba9529f8815acd23fe88c32763765d0e1b68 (patch)
tree173a9197784164ef862b94f8b670ac24bec1b080 /src/backend/utils/adt/timestamp.c
parent527e6d3f099df22783465ca7046fc0c8a534c921 (diff)
downloadpostgresql-cca8ba9529f8815acd23fe88c32763765d0e1b68.tar.gz
postgresql-cca8ba9529f8815acd23fe88c32763765d0e1b68.zip
Fix comment for GetCurrentIntegerTimestamp().
The unit of measure is microseconds, not milliseconds. Backpatch to 9.3 where the function and its comment were added.
Diffstat (limited to 'src/backend/utils/adt/timestamp.c')
-rw-r--r--src/backend/utils/adt/timestamp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/utils/adt/timestamp.c b/src/backend/utils/adt/timestamp.c
index dae929a24c8..23d3d2b6563 100644
--- a/src/backend/utils/adt/timestamp.c
+++ b/src/backend/utils/adt/timestamp.c
@@ -1570,7 +1570,7 @@ GetCurrentTimestamp(void)
/*
* GetCurrentIntegerTimestamp -- get the current operating system time as int64
*
- * Result is the number of milliseconds since the Postgres epoch. If compiled
+ * Result is the number of microseconds since the Postgres epoch. If compiled
* with --enable-integer-datetimes, this is identical to GetCurrentTimestamp(),
* and is implemented as a macro.
*/