diff options
Diffstat (limited to 'src/include/utils/backend_status.h')
-rw-r--r-- | src/include/utils/backend_status.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/utils/backend_status.h b/src/include/utils/backend_status.h index 8e149b56ca1..0cbcc9c9435 100644 --- a/src/include/utils/backend_status.h +++ b/src/include/utils/backend_status.h @@ -167,7 +167,7 @@ typedef struct PgBackendStatus int64 st_progress_param[PGSTAT_NUM_PROGRESS_PARAM]; /* query identifier, optionally computed using post_parse_analyze_hook */ - uint64 st_queryid; + uint64 st_query_id; } PgBackendStatus; @@ -297,14 +297,14 @@ extern void pgstat_clear_backend_activity_snapshot(void); /* Activity reporting functions */ extern void pgstat_report_activity(BackendState state, const char *cmd_str); -extern void pgstat_report_queryid(uint64 queryId, bool force); +extern void pgstat_report_query_id(uint64 query_id, bool force); extern void pgstat_report_tempfile(size_t filesize); extern void pgstat_report_appname(const char *appname); extern void pgstat_report_xact_timestamp(TimestampTz tstamp); extern const char *pgstat_get_backend_current_activity(int pid, bool checkUser); extern const char *pgstat_get_crashed_backend_activity(int pid, char *buffer, int buflen); -extern uint64 pgstat_get_my_queryid(void); +extern uint64 pgstat_get_my_query_id(void); /* ---------- |