]> granicus.if.org Git - postgresql/commitdiff
Undo \dT change. Not worth it.
authorBruce Momjian <bruce@momjian.us>
Fri, 18 May 2001 22:54:23 +0000 (22:54 +0000)
committerBruce Momjian <bruce@momjian.us>
Fri, 18 May 2001 22:54:23 +0000 (22:54 +0000)
src/backend/parser/parse_func.c
src/backend/utils/adt/format_type.c

index cca77a3cc222e06fe9c50a933534ebe1fdfb028b..2d4ad1eeb88ada838638d2251ba08613615a8382 100644 (file)
@@ -8,7 +8,7 @@
  *
  *
  * IDENTIFICATION
- *       $Header: /cvsroot/pgsql/src/backend/parser/parse_func.c,v 1.104 2001/05/18 22:35:50 momjian Exp $
+ *       $Header: /cvsroot/pgsql/src/backend/parser/parse_func.c,v 1.105 2001/05/18 22:54:23 momjian Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -236,8 +236,10 @@ agg_select_candidate(Oid typeid, CandidateList candidates)
 
 /*
  *     parse function
- *     This code is confusing code because the database can accept relation.column
- *     column.function, or relation.column.function.
+ *     This code is confusing code because the database can accept
+ *  relation.column, column.function, or relation.column.function.
+ *  It can also be called as func(col) or func(col,col).
+ *
  *     Funcname is the first parameter, and fargs are the rest.
  */
 Node *
index e346d8d46a64b1c0a96022db4ffd7b610ed9ab7d..5a860ebbb1cf2166a1713c49217b988ed6bf8f2c 100644 (file)
@@ -8,7 +8,7 @@
  * Portions Copyright (c) 1994, Regents of the University of California
  *
  * IDENTIFICATION
- *       $Header: /cvsroot/pgsql/src/backend/utils/adt/format_type.c,v 1.11 2001/05/18 22:35:51 momjian Exp $
+ *       $Header: /cvsroot/pgsql/src/backend/utils/adt/format_type.c,v 1.12 2001/05/18 22:54:23 momjian Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -174,11 +174,11 @@ format_type_internal(Oid type_oid, int32 typemod)
                        break;
 
                case TIMETZOID:
-                       buf = pstrdup("time & time zone");
+                       buf = pstrdup("time with time zone");
                        break;
 
                case TIMESTAMPOID:
-                       buf = pstrdup("timestamp & time zone");
+                       buf = pstrdup("timestamp with time zone");
                        break;
 
                case VARBITOID: