mirror of
https://github.com/postgres/postgres.git
synced 2026-02-20 16:30:40 -05:00
create_index_paths are not immediately discarded, but are available for subsequent planner work. This allows avoiding redundant syscache lookups in several places. Change interface to operator selectivity estimation procedures to allow faster and more flexible estimation. Initdb forced due to change of pg_proc entries for selectivity functions!
40 lines
1 KiB
C
40 lines
1 KiB
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* plancat.h
|
|
* prototypes for plancat.c.
|
|
*
|
|
*
|
|
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $Id: plancat.h,v 1.23 2001/05/20 20:28:20 tgl Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef PLANCAT_H
|
|
#define PLANCAT_H
|
|
|
|
#include "nodes/relation.h"
|
|
|
|
|
|
extern void get_relation_info(Oid relationObjectId,
|
|
bool *hasindex, long *pages, double *tuples);
|
|
|
|
extern List *find_secondary_indexes(Oid relationObjectId);
|
|
|
|
extern List *find_inheritance_children(Oid inhparent);
|
|
|
|
extern bool has_subclass(Oid relationId);
|
|
|
|
extern bool has_unique_index(RelOptInfo *rel, AttrNumber attno);
|
|
|
|
extern Selectivity restriction_selectivity(Query *root,
|
|
Oid operator,
|
|
List *args,
|
|
int varRelid);
|
|
|
|
extern Selectivity join_selectivity(Query *root,
|
|
Oid operator,
|
|
List *args);
|
|
|
|
#endif /* PLANCAT_H */
|