We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab29852 commit 0d3c767Copy full SHA for 0d3c767
src/backend/utils/adt/format_type.c
@@ -8,7 +8,7 @@
8
* Portions Copyright (c) 1994, Regents of the University of California
9
*
10
* IDENTIFICATION
11
- * $Header: /cvsroot/pgsql/src/backend/utils/adt/format_type.c,v 1.8 2001/01/24 19:43:13 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/utils/adt/format_type.c,v 1.9 2001/02/05 17:35:04 petere Exp $
12
13
*-------------------------------------------------------------------------
14
*/
@@ -175,6 +175,10 @@ format_type_internal(Oid type_oid, int32 typemod)
175
buf = pstrdup("time with time zone");
176
break;
177
178
+ case TIMESTAMPOID:
179
+ buf = pstrdup("timestamp with time zone");
180
+ break;
181
+
182
case VARBITOID:
183
if (with_typemod)
184
buf = psnprintf(13 + MAX_INT32_LEN + 1, "bit varying(%d)",
0 commit comments