mirror of https://github.com/citusdata/citus.git
16 lines
451 B
C
16 lines
451 B
C
/*-------------------------------------------------------------------------
|
|
* param_utils.h
|
|
*
|
|
* Copyright (c) Citus Data, Inc.
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
|
|
#ifndef PARAM_UTILS_H
|
|
#define PARAM_UTILS_H
|
|
|
|
extern bool GetParamsUsedInQuery(Node *expression, Bitmapset **paramBitmap);
|
|
extern void MarkUnreferencedExternParams(Node *expression, ParamListInfo boundParams);
|
|
|
|
#endif /* PARAM_UTILS_H */
|