20 lines
579 B
C
20 lines
579 B
C
/* --------------------------------------------------------------------
|
|
* guc_sql.h
|
|
*
|
|
* External declarations pertaining to backend/utils/misc/guc-file.l
|
|
* and backend/utils/misc/guc/guc_sql.cpp
|
|
*
|
|
* Portions Copyright (c) 2021, openGauss Contributors
|
|
* Copyright (c) 2000-2012, PostgreSQL Global Development Group
|
|
* Written by Peter Eisentraut <peter_e@gmx.net>.
|
|
*
|
|
* src/include/utils/guc_sql.h
|
|
* --------------------------------------------------------------------
|
|
*/
|
|
#ifndef GUC_SQL_H
|
|
#define GUC_SQL_H
|
|
|
|
extern void InitSqlConfigureNames();
|
|
|
|
#endif /* GUC_SQL_H */
|