mirror of
https://github.com/postgres/postgres.git
synced 2025-04-24 10:47:04 +03:00
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc to all files copyright Regents of Berkeley. Man, that's a lot of files.
37 lines
1.3 KiB
C
37 lines
1.3 KiB
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* geqo_misc.h
|
|
* prototypes for printout routines in optimizer/geqo
|
|
*
|
|
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $Id: geqo_misc.h,v 1.14 2000/01/26 05:58:20 momjian Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
|
|
/* contributed by:
|
|
=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=
|
|
* Martin Utesch * Institute of Automatic Control *
|
|
= = University of Mining and Technology =
|
|
* utesch@aut.tu-freiberg.de * Freiberg, Germany *
|
|
=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=
|
|
*/
|
|
|
|
#ifndef GEQO_MISC_H
|
|
#define GEQO_MISC_H
|
|
|
|
#include "optimizer/geqo_recombination.h"
|
|
#include "nodes/relation.h"
|
|
|
|
extern void print_pool(FILE *fp, Pool *pool, int start, int stop);
|
|
extern void print_gen(FILE *fp, Pool *pool, int generation);
|
|
extern void print_edge_table(FILE *fp, Edge *edge_table, int num_gene);
|
|
|
|
extern void geqo_print_rel(Query *root, RelOptInfo *rel);
|
|
extern void geqo_print_path(Query *root, Path *path, int indent);
|
|
extern void geqo_print_joinclauses(Query *root, List *clauses);
|
|
|
|
#endif /* GEQO_MISC_H */
|