diff options
Diffstat (limited to 'src/include/utils/backend_status.h')
-rw-r--r-- | src/include/utils/backend_status.h | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/src/include/utils/backend_status.h b/src/include/utils/backend_status.h index 7b8a34f64f6..7b7f6f59d07 100644 --- a/src/include/utils/backend_status.h +++ b/src/include/utils/backend_status.h @@ -13,7 +13,7 @@ #include "datatype/timestamp.h" #include "libpq/pqcomm.h" #include "miscadmin.h" /* for BackendType */ -#include "storage/backendid.h" +#include "storage/procnumber.h" #include "utils/backend_progress.h" @@ -87,7 +87,7 @@ typedef struct PgBackendGSSStatus * * Each live backend maintains a PgBackendStatus struct in shared memory * showing its current activity. (The structs are allocated according to - * BackendId, but that is not critical.) Note that this is unrelated to the + * ProcNumber, but that is not critical.) Note that this is unrelated to the * cumulative stats system (i.e. pgstat.c et al). * * Each auxiliary process also maintains a PgBackendStatus struct in shared @@ -250,11 +250,9 @@ typedef struct LocalPgBackendStatus PgBackendStatus backendStatus; /* - * The backend ID. For auxiliary processes, this will be set to a value - * greater than MaxBackends (since auxiliary processes do not have proper - * backend IDs). + * The proc number. */ - BackendId backend_id; + ProcNumber proc_number; /* * The xid of the current transaction if available, InvalidTransactionId @@ -333,8 +331,8 @@ extern uint64 pgstat_get_my_query_id(void); * ---------- */ extern int pgstat_fetch_stat_numbackends(void); -extern PgBackendStatus *pgstat_get_beentry_by_backend_id(BackendId beid); -extern LocalPgBackendStatus *pgstat_get_local_beentry_by_backend_id(BackendId beid); +extern PgBackendStatus *pgstat_get_beentry_by_proc_number(ProcNumber procNumber); +extern LocalPgBackendStatus *pgstat_get_local_beentry_by_proc_number(ProcNumber procNumber); extern LocalPgBackendStatus *pgstat_get_local_beentry_by_index(int idx); extern char *pgstat_clip_activity(const char *raw_activity); |