mirror of
https://github.com/postgres/postgres.git
synced 2026-03-12 05:32:27 -04:00
- code compile tested, but due to a yet unresolved problem with
parse.h's creation, compile not completed...
22 lines
687 B
C
22 lines
687 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* keys.h--
|
|
* prototypes for keys.c.
|
|
*
|
|
*
|
|
* Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $Id: keys.h,v 1.1 1996/08/28 07:23:16 scrappy Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef KEYS_H
|
|
#define KEYS_H
|
|
|
|
extern bool match_indexkey_operand(int indexkey, Var *operand, Rel *rel);
|
|
extern bool equal_indexkey_var(int index_key, Var *var);
|
|
extern Var *extract_subkey(JoinKey *jk, int which_subkey);
|
|
extern bool samekeys(List *keys1, List *keys2);
|
|
extern List *collect_index_pathkeys(int *index_keys, List *tlist);
|
|
|
|
#endif /* KEYS_H */
|