File tree Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Original file line number Diff line number Diff line change 8
8
*
9
9
*
10
10
* 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 $
12
12
*
13
13
*-------------------------------------------------------------------------
14
14
*/
@@ -236,8 +236,10 @@ agg_select_candidate(Oid typeid, CandidateList candidates)
236
236
237
237
/*
238
238
* 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
+ *
241
243
* Funcname is the first parameter, and fargs are the rest.
242
244
*/
243
245
Node *
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.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 $
12
12
*
13
13
*-------------------------------------------------------------------------
14
14
*/
@@ -174,11 +174,11 @@ format_type_internal(Oid type_oid, int32 typemod)
174
174
break ;
175
175
176
176
case TIMETZOID :
177
- buf = pstrdup ("time & time zone" );
177
+ buf = pstrdup ("time with time zone" );
178
178
break ;
179
179
180
180
case TIMESTAMPOID :
181
- buf = pstrdup ("timestamp & time zone" );
181
+ buf = pstrdup ("timestamp with time zone" );
182
182
break ;
183
183
184
184
case VARBITOID :
You can’t perform that action at this time.
0 commit comments