mirror of
https://github.com/postgres/postgres.git
synced 2026-06-08 08:34:03 -04:00
ed5003c584
ends to clean up (see my message of same date to pghackers), but mostly it works. INITDB REQUIRED!
34 lines
1.1 KiB
C
34 lines
1.1 KiB
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* parse_clause.h
|
|
*
|
|
*
|
|
*
|
|
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $Id: parse_clause.h,v 1.19 2000/09/12 21:07:12 tgl Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef PARSE_CLAUSE_H
|
|
#define PARSE_CLAUSE_H
|
|
|
|
#include "parser/parse_node.h"
|
|
|
|
extern void makeRangeTable(ParseState *pstate, List *frmList);
|
|
extern void setTargetTable(ParseState *pstate, char *relname,
|
|
bool inh, bool inJoinSet);
|
|
extern Node *transformWhereClause(ParseState *pstate, Node *where);
|
|
extern List *transformGroupClause(ParseState *pstate, List *grouplist,
|
|
List *targetlist);
|
|
extern List *transformSortClause(ParseState *pstate, List *orderlist,
|
|
List *targetlist);
|
|
extern List *transformDistinctClause(ParseState *pstate, List *distinctlist,
|
|
List *targetlist, List **sortClause);
|
|
|
|
extern List *addAllTargetsToSortList(List *sortlist, List *targetlist);
|
|
extern Index assignSortGroupRef(TargetEntry *tle, List *tlist);
|
|
|
|
#endif /* PARSE_CLAUSE_H */
|