summaryrefslogtreecommitdiff
path: root/src/include/nodes/parsenodes.h
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2008-03-21 22:41:48 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2008-03-21 22:41:48 +0000
commit58a8285542034f24839a92d64de37c6d765f23a8 (patch)
treeb2d6bd74ca36bb70f00772f55a87d02ebc748b34 /src/include/nodes/parsenodes.h
parent20e82a7c0ba474dc405902a8208f72dda9b3ce45 (diff)
downloadpostgresql-58a8285542034f24839a92d64de37c6d765f23a8.tar.gz
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.
Diffstat (limited to 'src/include/nodes/parsenodes.h')
-rw-r--r--src/include/nodes/parsenodes.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/include/nodes/parsenodes.h b/src/include/nodes/parsenodes.h
index ff01438331..ce96f25ab0 100644
--- a/src/include/nodes/parsenodes.h
+++ b/src/include/nodes/parsenodes.h
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $PostgreSQL: pgsql/src/include/nodes/parsenodes.h,v 1.360 2008/03/20 21:42:48 tgl Exp $
+ * $PostgreSQL: pgsql/src/include/nodes/parsenodes.h,v 1.361 2008/03/21 22:41:48 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@ -165,7 +165,6 @@ typedef struct TypeName
NodeTag type;
List *names; /* qualified name (list of Value strings) */
Oid typeid; /* type identified by OID */
- bool timezone; /* timezone specified? */
bool setof; /* is a set? */
bool pct_type; /* %TYPE specified? */
List *typmods; /* type modifier expression(s) */