blob: 892b8b07049c13bf083b9c2a57bf25dd4a4e535c [file]
/*-------------------------------------------------------------------------
*
* cdbplan.h
* definitions for cdbplan.c utilities
*
* Portions Copyright (c) 2004-2008, Greenplum inc
* Portions Copyright (c) 2012-Present VMware, Inc. or its affiliates.
*
*
* IDENTIFICATION
* src/include/cdb/cdbplan.h
*
*-------------------------------------------------------------------------
*/
#ifndef CDBPLAN_H
#define CDBPLAN_H
#include "optimizer/walkers.h"
extern Node * plan_tree_mutator(Node *node, Node *(*mutator) (Node *, void *), void *context, bool recurse_into_subplans);
extern String *get_tle_name(TargetEntry *tle, List *rtable, const char *default_name);
#endif /* CDBPLAN_H */