1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-07 00:36:50 +03:00

Remove TypeName struct's timezone flag, which has been write-only storage

for a very long time --- in current usage it's entirely redundant with the
name field.
This commit is contained in:
Tom Lane
2008-03-21 22:41:48 +00:00
parent 20e82a7c0b
commit 58a8285542
5 changed files with 5 additions and 17 deletions

View File

@ -15,7 +15,7 @@
* Portions Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/nodes/copyfuncs.c,v 1.389 2008/03/20 21:42:47 tgl Exp $
* $PostgreSQL: pgsql/src/backend/nodes/copyfuncs.c,v 1.390 2008/03/21 22:41:48 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@ -1714,7 +1714,6 @@ _copyTypeName(TypeName *from)
COPY_NODE_FIELD(names);
COPY_SCALAR_FIELD(typeid);
COPY_SCALAR_FIELD(timezone);
COPY_SCALAR_FIELD(setof);
COPY_SCALAR_FIELD(pct_type);
COPY_NODE_FIELD(typmods);