8000 interval_out failed to mention 'ago' for negative intervals in SQL and · jandas/postgres@2b47146 · GitHub
[go: up one dir, main page]

Skip to content
8000

Commit 2b47146

Browse files
committed
interval_out failed to mention 'ago' for negative intervals in SQL and
GERMAN datestyles. Ancient bug reported by Terry Lee Tucker.
1 parent 643bb81 commit 2b47146

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/backend/utils/adt/datetime.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*
99
*
1010
* IDENTIFICATION
11-
* $Header: /cvsroot/pgsql/src/backend/utils/adt/datetime.c,v 1.87.2.3 2003/01/26 22:33:16 tgl Exp $
11+
* $Header: /cvsroot/pgsql/src/backend/utils/adt/datetime.c,v 1.87.2.4 2005/01/11 18:34:41 tgl Exp $
1212
*
1313
*-------------------------------------------------------------------------
1414
*/
@@ -3448,7 +3448,7 @@ EncodeTimeSpan(struct tm * tm, double fsec, int style, char *str)
34483448
cp += strlen(cp);
34493449
}
34503450

3451-
if (is_before && (style == USE_POSTGRES_DATES))
3451+
if (is_before && (style != USE_ISO_DATES))
34523452
{
34533453
strcat(cp, " ago");
34543454
cp += strlen(cp);

0 commit comments

Comments
 (0)
0