diff options
author | Thomas G. Lockhart <lockhart@fourpalms.org> | 2000-02-15 03:38:29 +0000 |
---|---|---|
committer | Thomas G. Lockhart <lockhart@fourpalms.org> | 2000-02-15 03:38:29 +0000 |
commit | a344a6e7b5d7b2b87f33a155c3ef88bdfdce3fd8 (patch) | |
tree | 78c19baad416cfe014237bc726baff63aff2b150 /src/include/nodes/makefuncs.h | |
parent | 92c8437d8de8efeb5324fcccb0175beec8e66619 (diff) |
Carry column aliases from the parser frontend. Enables queries like
SELECT a FROM t1 tx (a);
Allow join syntax, including queries like
SELECT * FROM t1 NATURAL JOIN t2;
Update RTE structure to hold column aliases in an Attr structure.
Diffstat (limited to 'src/include/nodes/makefuncs.h')
-rw-r--r-- | src/include/nodes/makefuncs.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/include/nodes/makefuncs.h b/src/include/nodes/makefuncs.h index 2b3c5339c61..f934eb5e63a 100644 --- a/src/include/nodes/makefuncs.h +++ b/src/include/nodes/makefuncs.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2000, PostgreSQL, Inc * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: makefuncs.h,v 1.22 2000/01/26 05:58:16 momjian Exp $ + * $Id: makefuncs.h,v 1.23 2000/02/15 03:38:13 thomas Exp $ * *------------------------------------------------------------------------- */ @@ -46,4 +46,7 @@ extern Const *makeConst(Oid consttype, bool constisset, bool constiscast); +extern Attr * +makeAttr(char *relname, char *attname); + #endif /* MAKEFUNC_H */ |