mirror of https://github.com/citusdata/citus.git
24 lines
554 B
C
24 lines
554 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* insert_select_executor.h
|
|
*
|
|
* Declarations for public functions and types related to executing
|
|
* INSERT..SELECT commands.
|
|
*
|
|
* Copyright (c) 2017, Citus Data, Inc.
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
|
|
#ifndef INSERT_SELECT_EXECUTOR_H
|
|
#define INSERT_SELECT_EXECUTOR_H
|
|
|
|
|
|
#include "executor/execdesc.h"
|
|
|
|
|
|
extern TupleTableSlot * CoordinatorInsertSelectExecScan(CustomScanState *node);
|
|
|
|
|
|
#endif /* INSERT_SELECT_EXECUTOR_H */
|