1
0
mirror of https://github.com/postgres/postgres.git synced 2025-05-02 11:44:50 +03:00

Undo \dT change. Not worth it.

This commit is contained in:
Bruce Momjian 2001-05-18 22:54:23 +00:00
parent 2fd831d323
commit f61d70c2ac
2 changed files with 8 additions and 6 deletions

View File

@ -8,7 +8,7 @@
* *
* *
* IDENTIFICATION * 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 * parse function
* This code is confusing code because the database can accept relation.column * This code is confusing code because the database can accept
* column.function, or relation.column.function. * 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. * Funcname is the first parameter, and fargs are the rest.
*/ */
Node * Node *

View File

@ -8,7 +8,7 @@
* Portions Copyright (c) 1994, Regents of the University of California * Portions Copyright (c) 1994, Regents of the University of California
* *
* IDENTIFICATION * 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; break;
case TIMETZOID: case TIMETZOID:
buf = pstrdup("time & time zone"); buf = pstrdup("time with time zone");
break; break;
case TIMESTAMPOID: case TIMESTAMPOID:
buf = pstrdup("timestamp & time zone"); buf = pstrdup("timestamp with time zone");
break; break;
case VARBITOID: case VARBITOID: