Files
openGauss-server/src/include/utils/guc_sql.h
dengxuyue c7b25efcff New features (and bug fixes)
1. alter large sequence
    2. subpartition
    2.1 split subpartition
    2.2 truncate subpartition
    3. 支持load
    4. 支持start-with/connect-by
    5. ...
2021-12-29 21:33:28 +08:00

22 lines
664 B
C

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