Files
openGauss-server/contrib/ndpplugin/ndp_check.h
Mijamind cb3fa65c63 【资源池化】openGauss算子下推特性合入
1.opengauss内核适配
2.ndpplugin
2023-05-16 21:03:02 +08:00

23 lines
608 B
C

/* -------------------------------------------------------------------------
* ndp_check.h
* prototypes for functions in contrib/ndpplugin/ndp_check.cpp
*
* Portions Copyright (c) 2022 Huawei Technologies Co.,Ltd.
*
* IDENTIFICATION
* contrib/ndpplugin/ndp_check.h
*
* -------------------------------------------------------------------------
*/
#ifndef NDP_CHECK_H
#define NDP_CHECK_H
#include "pgstat.h"
#include "catalog/pg_proc.h"
Plan* CheckAndGetNdpPlan(PlannedStmt* stmt, SeqScan* scan, Plan* parent);
bool CheckNdpSupport(Query* querytree, PlannedStmt *stmt);
#endif // NDP_CHECK_H