mirror of https://github.com/citusdata/citus.git
23 lines
593 B
C
23 lines
593 B
C
//
|
|
// Created by Nils Dijk on 17/01/2020.
|
|
//
|
|
|
|
#ifndef CITUS_PATH_BASED_PLANNER_H
|
|
#define CITUS_PATH_BASED_PLANNER_H
|
|
|
|
#include "nodes/parsenodes.h"
|
|
#include "nodes/pathnodes.h"
|
|
|
|
extern void PathBasedPlannerRelationHook(PlannerInfo *root,
|
|
RelOptInfo *relOptInfo,
|
|
Index restrictionIndex,
|
|
RangeTblEntry *rte);
|
|
extern void PathBasedPlannerJoinHook(PlannerInfo *root,
|
|
RelOptInfo *joinrel,
|
|
RelOptInfo *outerrel,
|
|
RelOptInfo *innerrel,
|
|
JoinType jointype,
|
|
JoinPathExtraData *extra);
|
|
|
|
#endif //CITUS_PATH_BASED_PLANNER_H
|