aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2003-04-07 15:04:03 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2003-04-07 15:04:03 +0000
commitafe1185cf082c4c1bb5cafcffa544e0f5d4fc97f (patch)
treec9d7a98a397e3ad61e8fc4d84861c197b14dd035 /src
parenta8cb3368db96d2492c3dce6ae2a3b7a69c11de90 (diff)
downloadpostgresql-afe1185cf082c4c1bb5cafcffa544e0f5d4fc97f.tar.gz
postgresql-afe1185cf082c4c1bb5cafcffa544e0f5d4fc97f.zip
Remove unnecessary dt2local() call.
Diffstat (limited to 'src')
-rw-r--r--src/backend/utils/adt/timestamp.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/backend/utils/adt/timestamp.c b/src/backend/utils/adt/timestamp.c
index e2f2b2d35b4..ffa8012a50c 100644
--- a/src/backend/utils/adt/timestamp.c
+++ b/src/backend/utils/adt/timestamp.c
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/utils/adt/timestamp.c,v 1.82 2003/04/04 04:50:44 tgl Exp $
+ * $Header: /cvsroot/pgsql/src/backend/utils/adt/timestamp.c,v 1.83 2003/04/07 15:04:03 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@ -911,8 +911,6 @@ timestamp2tm(Timestamp dt, int *tzp, struct tm * tm, fsec_t *fsec, char **tzn)
if (tzn != NULL)
*tzn = NULL;
#endif
-
- dt = dt2local(dt, *tzp);
}
else
{