File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change 8
8
* Portions Copyright (c) 1994, Regents of the University of California
9
9
*
10
10
* IDENTIFICATION
11
- * $Header: /cvsroot/pgsql/src/backend/utils/adt/format_type.c,v 1.8 2001/01/24 19:43:13 momjian Exp $
11
+ * $Header: /cvsroot/pgsql/src/backend/utils/adt/format_type.c,v 1.9 2001/02/05 17:35:04 petere Exp $
12
12
*
13
13
*-------------------------------------------------------------------------
14
14
*/
@@ -175,6 +175,10 @@ format_type_internal(Oid type_oid, int32 typemod)
175
175
buf = pstrdup ("time with time zone" );
176
176
break ;
177
177
178
+ case TIMESTAMPOID :
179
+ buf = pstrdup ("timestamp with time zone" );
180
+ break ;
181
+
178
182
case VARBITOID :
179
183
if (with_typemod )
180
184
buf = psnprintf (13 + MAX_INT32_LEN + 1 , "bit varying(%d)" ,
You can’t perform that action at this time.
0 commit comments