【资源池化】SPQ支持DML+select多机并行

This commit is contained in:
quemingjian
2023-12-21 15:09:06 +08:00
parent 6034bc0173
commit a24adb75f9
27 changed files with 571 additions and 25 deletions

View File

@ -0,0 +1,26 @@
/*-------------------------------------------------------------------------
*
* nodeSplitUpdate.h
* Prototypes for nodeSplitUpdate.
*
* Portions Copyright (c) 2012, EMC Corp.
* Portions Copyright (c) 2012-2022 VMware, Inc. or its affiliates.
* Portions Copyright (c) 2023 Huawei Technologies Co.,Ltd.
*
* IDENTIFICATION
* src/include/executor/node/nodeSplitUpdate.h
*
*-------------------------------------------------------------------------
*/
#ifndef OPENGAUSS_SERVER_NODESPLITUPDATE_H
#define OPENGAUSS_SERVER_NODESPLITUPDATE_H
#ifdef USE_SPQ
#include "nodes/execnodes.h"
extern SplitUpdateState* ExecInitSplitUpdate(SplitUpdate *node, EState *estate, int eflags);
extern void ExecEndSplitUpdate(SplitUpdateState *node);
#endif /* USE_SPQ */
#endif //OPENGAUSS_SERVER_NODESPLITUPDATE_H