mirror of https://github.com/citusdata/citus.git
16 lines
438 B
C
16 lines
438 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* namespace_utils.h
|
|
* Utility function declarations related to namespace changes.
|
|
*
|
|
* Copyright (c) Citus Data, Inc.
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
|
|
#ifndef NAMESPACE_UTILS_H
|
|
#define NAMESPACE_UTILS_H
|
|
|
|
extern void PushOverrideEmptySearchPath(MemoryContext memoryContext);
|
|
|
|
#endif /* NAMESPACE_UTILS_H */
|