mirror of https://github.com/citusdata/citus.git
22 lines
574 B
C
22 lines
574 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* multi_utility.h
|
|
* Citus utility hook and related functionality.
|
|
*
|
|
* Copyright (c) 2012-2015, Citus Data, Inc.
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
|
|
#ifndef MULTI_UTILITY_H
|
|
#define MULTI_UTILITY_H
|
|
|
|
#include "tcop/utility.h"
|
|
|
|
|
|
extern void multi_ProcessUtility(Node *parsetree, const char *queryString,
|
|
ProcessUtilityContext context, ParamListInfo params,
|
|
DestReceiver *dest, char *completionTag);
|
|
|
|
|
|
#endif /* MULTI_UTILITY_H */
|