OSDN Git Service

interval_out failed to mention 'ago' for negative intervals in SQL and
authorTom Lane <tgl@sss.pgh.pa.us>
Tue, 11 Jan 2005 18:33:46 +0000 (18:33 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Tue, 11 Jan 2005 18:33:46 +0000 (18:33 +0000)
GERMAN datestyles.  Ancient bug reported by Terry Lee Tucker.

src/backend/utils/adt/datetime.c
src/interfaces/ecpg/pgtypeslib/interval.c

index e98475f..47dc28d 100644 (file)
@@ -8,7 +8,7 @@
  *
  *
  * IDENTIFICATION
- *       $PostgreSQL: pgsql/src/backend/utils/adt/datetime.c,v 1.136 2004/12/31 22:01:21 pgsql Exp $
+ *       $PostgreSQL: pgsql/src/backend/utils/adt/datetime.c,v 1.137 2005/01/11 18:33:45 tgl Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -3932,7 +3932,7 @@ EncodeInterval(struct pg_tm * tm, fsec_t fsec, int style, char *str)
                cp += strlen(cp);
        }
 
-       if (is_before && (style == USE_POSTGRES_DATES))
+       if (is_before && (style != USE_ISO_DATES))
        {
                strcat(cp, " ago");
                cp += strlen(cp);
index e1d34e8..7a06069 100644 (file)
@@ -663,7 +663,7 @@ EncodeInterval(struct tm * tm, fsec_t fsec, int style, char *str)
                cp += strlen(cp);
        }
 
-       if (is_before && (style == USE_POSTGRES_DATES))
+       if (is_before && (style != USE_ISO_DATES))
        {
                strcat(cp, " ago");
                cp += strlen(cp);