]> granicus.if.org Git - postgresql/commitdiff
Fix ancient bug in handling of to_char modifier 'TH', when used with HH.
authorHeikki Linnakangas <heikki.linnakangas@iki.fi>
Mon, 6 Jul 2009 19:11:53 +0000 (19:11 +0000)
committerHeikki Linnakangas <heikki.linnakangas@iki.fi>
Mon, 6 Jul 2009 19:11:53 +0000 (19:11 +0000)
In what seems like an oversight, we used to treat 'TH' the same as lowercase
'th', but only with HH/HH12.

src/backend/utils/adt/formatting.c

index 1638e27d60bf02100e64d6b15724a794cff5da67..9c4441985aed308c6aa3d7fd0a45b8dcce2591b7 100644 (file)
@@ -1,7 +1,7 @@
 /* -----------------------------------------------------------------------
  * formatting.c
  *
- * $PostgreSQL: pgsql/src/backend/utils/adt/formatting.c,v 1.137.2.1 2009/03/12 00:53:32 tgl Exp $
+ * $PostgreSQL: pgsql/src/backend/utils/adt/formatting.c,v 1.137.2.2 2009/07/06 19:11:53 heikki Exp $
  *
  *
  *      Portions Copyright (c) 1999-2008, PostgreSQL Global Development Group
@@ -1913,7 +1913,7 @@ dch_time(int arg, char *inout, int suf, bool is_to_char, bool is_interval,
                                                tm->tm_hour % (HOURS_PER_DAY / 2) == 0 ? 12 :
                                                tm->tm_hour % (HOURS_PER_DAY / 2));
                                if (S_THth(suf))
-                                       str_numth(p_inout, inout, 0);
+                                       str_numth(p_inout, inout, S_TH_TYPE(suf));
                                return strlen(p_inout);
                        }
                        else