aboutsummaryrefslogtreecommitdiff
path: root/src/include/nodes/readfuncs.h
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2002-11-25 18:12:12 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2002-11-25 18:12:12 +0000
commitdbe100c4022e0125c103c3c0818ac5b327cc8283 (patch)
treedb5286837ed09f35740f3230c1832fb7c97a5d40 /src/include/nodes/readfuncs.h
parent0aa5b6866e5f72f094b79ff41c5d36d81800f964 (diff)
downloadpostgresql-dbe100c4022e0125c103c3c0818ac5b327cc8283.tar.gz
postgresql-dbe100c4022e0125c103c3c0818ac5b327cc8283.zip
Restructure outfuncs and readfuncs to use macros in the same style as
just done for copyfuncs/equalfuncs. Read functions in particular get a lot shorter than before, and it's much easier to compare an out function with the corresponding read function to make sure they agree. initdb forced due to small changes in nodestring format (regularizing a few cases that were formerly idiosyncratic).
Diffstat (limited to 'src/include/nodes/readfuncs.h')
-rw-r--r--src/include/nodes/readfuncs.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/nodes/readfuncs.h b/src/include/nodes/readfuncs.h
index fc00ce106fa..67009c3f4ee 100644
--- a/src/include/nodes/readfuncs.h
+++ b/src/include/nodes/readfuncs.h
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: readfuncs.h,v 1.15 2002/06/20 20:29:51 momjian Exp $
+ * $Id: readfuncs.h,v 1.16 2002/11/25 18:12:12 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@ -26,6 +26,6 @@ extern void *nodeRead(bool read_car_only);
/*
* prototypes for functions in readfuncs.c
*/
-extern Node *parsePlanString(void);
+extern Node *parseNodeString(void);
#endif /* READFUNCS_H */