mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-04-08 17:38:32 +08:00
datatype by array_eq and array_cmp; use this to solve problems with memory leaks in array indexing support. The parser's equality_oper and ordering_oper routines also use the cache. Change the operator search algorithms to look for appropriate btree or hash index opclasses, instead of assuming operators named '<' or '=' have the right semantics. (ORDER BY ASC/DESC now also look at opclasses, instead of assuming '<' and '>' are the right things.) Add several more index opclasses so that there is no regression in functionality for base datatypes. initdb forced due to catalog additions.
46 lines
1.7 KiB
C
46 lines
1.7 KiB
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* parse_clause.h
|
|
* handle clauses in parser
|
|
*
|
|
*
|
|
* Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $Id: parse_clause.h,v 1.37 2003/08/17 19:58:06 tgl Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef PARSE_CLAUSE_H
|
|
#define PARSE_CLAUSE_H
|
|
|
|
#include "parser/parse_node.h"
|
|
|
|
extern void transformFromClause(ParseState *pstate, List *frmList);
|
|
extern int setTargetTable(ParseState *pstate, RangeVar *relation,
|
|
bool inh, bool alsoSource);
|
|
extern bool interpretInhOption(InhOption inhOpt);
|
|
|
|
extern Node *transformWhereClause(ParseState *pstate, Node *clause,
|
|
const char *constructName);
|
|
extern Node *transformLimitClause(ParseState *pstate, Node *clause,
|
|
const char *constructName);
|
|
extern List *transformGroupClause(ParseState *pstate, List *grouplist,
|
|
List *targetlist, List *sortClause);
|
|
extern List *transformSortClause(ParseState *pstate, List *orderlist,
|
|
List *targetlist, bool resolveUnknown);
|
|
extern List *transformDistinctClause(ParseState *pstate, List *distinctlist,
|
|
List *targetlist, List **sortClause);
|
|
|
|
extern List *addAllTargetsToSortList(ParseState *pstate,
|
|
List *sortlist, List *targetlist,
|
|
bool resolveUnknown);
|
|
extern List *addTargetToSortList(ParseState *pstate, TargetEntry *tle,
|
|
List *sortlist, List *targetlist,
|
|
int sortby_kind, List *sortby_opname,
|
|
bool resolveUnknown);
|
|
extern Index assignSortGroupRef(TargetEntry *tle, List *tlist);
|
|
extern bool targetIsInSortList(TargetEntry *tle, List *sortList);
|
|
|
|
#endif /* PARSE_CLAUSE_H */
|