mirror of
https://github.com/postgres/postgres.git
synced 2025-06-29 10:41:53 +03:00
First pass at set-returning-functions in FROM, by Joe Conway with
some kibitzing from Tom Lane. Not everything works yet, and there's no documentation or regression test, but let's commit this so Joe doesn't need to cope with tracking changes in so many files ...
This commit is contained in:
@ -7,7 +7,7 @@
|
||||
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
|
||||
* Portions Copyright (c) 1994, Regents of the University of California
|
||||
*
|
||||
* $Id: builtins.h,v 1.180 2002/04/26 01:24:08 tgl Exp $
|
||||
* $Id: builtins.h,v 1.181 2002/05/12 20:10:05 tgl Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@ -354,7 +354,7 @@ extern char *deparse_expression(Node *expr, List *dpcontext,
|
||||
extern List *deparse_context_for(const char *aliasname, Oid relid);
|
||||
extern List *deparse_context_for_plan(int outer_varno, Node *outercontext,
|
||||
int inner_varno, Node *innercontext);
|
||||
extern Node *deparse_context_for_relation(const char *aliasname, Oid relid);
|
||||
extern Node *deparse_context_for_rte(RangeTblEntry *rte);
|
||||
extern Node *deparse_context_for_subplan(const char *name, List *tlist,
|
||||
List *rtable);
|
||||
extern const char *quote_identifier(const char *ident);
|
||||
|
Reference in New Issue
Block a user