mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-03-04 03:07:02 +08:00
Update this branch to match CVS head, includes WIN32 improvements.
This commit is contained in:
@ -7,7 +7,7 @@
|
||||
* 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.36 2003/08/07 19:20:23 tgl Exp $
|
||||
* $Id: parse_clause.h,v 1.36.2.1 2003/09/07 04:37:09 momjian Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@ -37,7 +37,8 @@ extern List *addAllTargetsToSortList(ParseState *pstate,
|
||||
bool resolveUnknown);
|
||||
extern List *addTargetToSortList(ParseState *pstate, TargetEntry *tle,
|
||||
List *sortlist, List *targetlist,
|
||||
List *opname, bool resolveUnknown);
|
||||
int sortby_kind, List *sortby_opname,
|
||||
bool resolveUnknown);
|
||||
extern Index assignSortGroupRef(TargetEntry *tle, List *tlist);
|
||||
extern bool targetIsInSortList(TargetEntry *tle, List *sortList);
|
||||
|
||||
|
||||
@ -7,7 +7,7 @@
|
||||
* Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group
|
||||
* Portions Copyright (c) 1994, Regents of the University of California
|
||||
*
|
||||
* $Id: parse_oper.h,v 1.32 2003/08/04 02:40:14 momjian Exp $
|
||||
* $Id: parse_oper.h,v 1.32.2.1 2003/09/07 04:37:09 momjian Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@ -38,15 +38,16 @@ extern Operator compatible_oper(List *op, Oid arg1, Oid arg2, bool noError);
|
||||
|
||||
/* currently no need for compatible_left_oper/compatible_right_oper */
|
||||
|
||||
/* Routines for identifying "=" and "<" operators for a type */
|
||||
/* Routines for identifying "=", "<", ">" operators for a type */
|
||||
extern Operator equality_oper(Oid argtype, bool noError);
|
||||
extern Operator ordering_oper(Oid argtype, bool noError);
|
||||
extern Operator reverse_ordering_oper(Oid argtype, bool noError);
|
||||
|
||||
/* Convenience routines for common calls on the above */
|
||||
extern Oid compatible_oper_opid(List *op, Oid arg1, Oid arg2, bool noError);
|
||||
extern Oid equality_oper_funcid(Oid argtype);
|
||||
extern Oid ordering_oper_opid(Oid argtype);
|
||||
extern Oid ordering_oper_funcid(Oid argtype);
|
||||
extern Oid reverse_ordering_oper_opid(Oid argtype);
|
||||
|
||||
/* Extract operator OID or underlying-function OID from an Operator tuple */
|
||||
extern Oid oprid(Operator op);
|
||||
|
||||
Reference in New Issue
Block a user