Shorten routine names to <= 16 characters to fit in pg_proc table.
authorThomas G. Lockhart
Sat, 25 Oct 1997 05:22:58 +0000 (05:22 +0000)
committerThomas G. Lockhart
Sat, 25 Oct 1997 05:22:58 +0000 (05:22 +0000)
src/backend/utils/adt/timestamp.c

index fde86061cb65da7a309d2339bee920e209a20784..fcad2903ca968de8d566744fe0f618a98ab564de 100644 (file)
@@ -103,22 +103,13 @@ timestampge(time_t t1, time_t t2)
 }
 
 DateTime *
-timestamp_datetime(time_t timestamp)
+stamp_datetime(time_t timestamp)
 {
-   DateTime   *result;
+   return(abstime_datetime((AbsoluteTime) timestamp));
+} /* stamp_datetime() */
 
-   double      fsec = 0;
-   struct tm  *tm;
-
-   if (!PointerIsValid(result = PALLOCTYPE(DateTime)))
-       elog(WARN, "Memory allocation failed, can't convert timestamp to datetime", NULL);
-
-   tm = localtime((time_t *) ×tamp);
-   tm->tm_year += 1900;
-   tm->tm_mon += 1;
-
-   if (tm2datetime(tm, fsec, NULL, result) != 0)
-       elog(WARN, "Unable to convert timestamp to datetime", timestamp_out(timestamp));
-
-   return (result);
-} /* timestamp_datetime() */
+time_t
+datetime_stamp(DateTime *datetime)
+{
+   return((AbsoluteTime) datetime_abstime(datetime));
+} /* datetime_stamp() */