Skip to content
Snippets Groups Projects
Commit e17d8448 authored by Thomas G. Lockhart's avatar Thomas G. Lockhart
Browse files

Add parameters to function calls to pass back table qualifications.

parent 9fd28029
No related branches found
No related tags found
No related merge requests found
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
* *
* Copyright (c) 1994, Regents of the University of California * Copyright (c) 1994, Regents of the University of California
* *
* $Id: parse_clause.h,v 1.7 1998/09/01 04:37:30 momjian Exp $ * $Id: parse_clause.h,v 1.8 1999/02/23 08:05:27 thomas Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -19,8 +19,8 @@ ...@@ -19,8 +19,8 @@
#include <nodes/primnodes.h> #include <nodes/primnodes.h>
#include <parser/parse_node.h> #include <parser/parse_node.h>
extern void makeRangeTable(ParseState *pstate, char *relname, List *frmList); extern void makeRangeTable(ParseState *pstate, char *relname, List *frmList, Node **qual);
extern Node *transformWhereClause(ParseState *pstate, Node *a_expr); extern Node *transformWhereClause(ParseState *pstate, Node *where, Node *using);
extern List *transformGroupClause(ParseState *pstate, List *grouplist, extern List *transformGroupClause(ParseState *pstate, List *grouplist,
List *targetlist); List *targetlist);
extern List *transformSortClause(ParseState *pstate, extern List *transformSortClause(ParseState *pstate,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment