diff options
Diffstat (limited to 'src/include/commands')
-rw-r--r-- | src/include/commands/explain.h | 10 | ||||
-rw-r--r-- | src/include/commands/seclabel.h | 2 | ||||
-rw-r--r-- | src/include/commands/vacuum.h | 8 |
3 files changed, 10 insertions, 10 deletions
diff --git a/src/include/commands/explain.h b/src/include/commands/explain.h index e2a0ee0d8cb..358bfd84824 100644 --- a/src/include/commands/explain.h +++ b/src/include/commands/explain.h @@ -49,11 +49,11 @@ typedef struct ExplainState /* Hook for plugins to get control in ExplainOneQuery() */ typedef void (*ExplainOneQuery_hook_type) (Query *query, - int cursorOptions, - IntoClause *into, - ExplainState *es, - const char *queryString, - ParamListInfo params); + int cursorOptions, + IntoClause *into, + ExplainState *es, + const char *queryString, + ParamListInfo params); extern PGDLLIMPORT ExplainOneQuery_hook_type ExplainOneQuery_hook; /* Hook for plugins to get control in explain_get_index_name() */ diff --git a/src/include/commands/seclabel.h b/src/include/commands/seclabel.h index d317f394850..2e24801fc19 100644 --- a/src/include/commands/seclabel.h +++ b/src/include/commands/seclabel.h @@ -27,7 +27,7 @@ extern void DeleteSharedSecurityLabel(Oid objectId, Oid classId); extern ObjectAddress ExecSecLabelStmt(SecLabelStmt *stmt); typedef void (*check_object_relabel_type) (const ObjectAddress *object, - const char *seclabel); + const char *seclabel); extern void register_label_provider(const char *provider, check_object_relabel_type hook); diff --git a/src/include/commands/vacuum.h b/src/include/commands/vacuum.h index 541c2fa3cf2..0fa585b091f 100644 --- a/src/include/commands/vacuum.h +++ b/src/include/commands/vacuum.h @@ -59,12 +59,12 @@ typedef struct VacAttrStats *VacAttrStatsP; typedef Datum (*AnalyzeAttrFetchFunc) (VacAttrStatsP stats, int rownum, - bool *isNull); + bool *isNull); typedef void (*AnalyzeAttrComputeStatsFunc) (VacAttrStatsP stats, - AnalyzeAttrFetchFunc fetchfunc, - int samplerows, - double totalrows); + AnalyzeAttrFetchFunc fetchfunc, + int samplerows, + double totalrows); typedef struct VacAttrStats { |