-
+
Functions and Operators
|
Q
- quarter
+ quarter (ignored by to_date> and to_timestamp>)
|
RM
even if it contains pattern key words. For example, in
'"Hello Year "YYYY', the YYYY
will be replaced by the year data, but the single Y in Year
- will not be.
+ will not be. In to_date>, to_number>,
+ and to_timestamp>, double-quoted strings skip the number of
+ input characters contained in the string, e.g. "XX">
+ skips two input characters.
/* -----------------------------------------------------------------------
* formatting.c
*
- * $PostgreSQL: pgsql/src/backend/utils/adt/formatting.c,v 1.168 2010/02/26 02:01:08 momjian Exp $
+ * $PostgreSQL: pgsql/src/backend/utils/adt/formatting.c,v 1.169 2010/03/03 22:28:42 momjian Exp $
*
*
* Portions Copyright (c) 1999-2010, PostgreSQL Global Development Group
s += SKIP_THth(n->suffix);
break;
case DCH_Q:
-
/*
- * We ignore Q when converting to date because it is not
- * normative.
+ * We ignore 'Q' when converting to date because it is
+ * unclear which date in the quarter to use, and some
+ * people specify both quarter and month, so if it was
+ * honored it might conflict with the supplied month.
+ * That is also why we don't throw an error.
*
* We still parse the source string for an integer, but it
* isn't stored anywhere in 'out'.