Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit f61d70c

Browse files
committed
Undo \dT change. Not worth it.
1 parent 2fd831d commit f61d70c

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

src/backend/parser/parse_func.c

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*
99
*
1010
* IDENTIFICATION
11-
* $Header: /cvsroot/pgsql/src/backend/parser/parse_func.c,v 1.104 2001/05/18 22:35:50 momjian Exp $
11+
* $Header: /cvsroot/pgsql/src/backend/parser/parse_func.c,v 1.105 2001/05/18 22:54:23 momjian Exp $
1212
*
1313
*-------------------------------------------------------------------------
1414
*/
@@ -236,8 +236,10 @@ agg_select_candidate(Oid typeid, CandidateList candidates)
236236

237237
/*
238238
* parse function
239-
* This code is confusing code because the database can accept relation.column
240-
* column.function, or relation.column.function.
239+
* This code is confusing code because the database can accept
240+
* relation.column, column.function, or relation.column.function.
241+
* It can also be called as func(col) or func(col,col).
242+
*
241243
* Funcname is the first parameter, and fargs are the rest.
242244
*/
243245
Node *

src/backend/utils/adt/format_type.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* Portions Copyright (c) 1994, Regents of the University of California
99
*
1010
* IDENTIFICATION
11-
* $Header: /cvsroot/pgsql/src/backend/utils/adt/format_type.c,v 1.11 2001/05/18 22:35:51 momjian Exp $
11+
* $Header: /cvsroot/pgsql/src/backend/utils/adt/format_type.c,v 1.12 2001/05/18 22:54:23 momjian Exp $
1212
*
1313
*-------------------------------------------------------------------------
1414
*/
@@ -174,11 +174,11 @@ format_type_internal(Oid type_oid, int32 typemod)
174174
break;
175175

176176
case TIMETZOID:
177-
buf = pstrdup("time & time zone");
177+
buf = pstrdup("time with time zone");
178178
break;
179179

180180
case TIMESTAMPOID:
181-
buf = pstrdup("timestamp & time zone");
181+
buf = pstrdup("timestamp with time zone");
182182
break;
183183

184184
case VARBITOID:

0 commit comments

Comments
 (0)