mirror of
https://github.com/postgres/postgres.git
synced 2025-07-27 12:41:57 +03:00
pgstat: move pgstat.c to utils/activity.
Now that pgstat is not related to postmaster anymore, src/backend/postmaster is not a well fitting directory. Author: Andres Freund <andres@anarazel.de> Discussion: https://postgr.es/m/20220303021600.hs34ghqcw6zcokdh@alap3.anarazel.de
This commit is contained in:
@ -21,7 +21,6 @@ OBJS = \
|
|||||||
fork_process.o \
|
fork_process.o \
|
||||||
interrupt.o \
|
interrupt.o \
|
||||||
pgarch.o \
|
pgarch.o \
|
||||||
pgstat.o \
|
|
||||||
postmaster.o \
|
postmaster.o \
|
||||||
shell_archive.o \
|
shell_archive.o \
|
||||||
startup.o \
|
startup.o \
|
||||||
|
@ -16,6 +16,7 @@ include $(top_builddir)/src/Makefile.global
|
|||||||
OBJS = \
|
OBJS = \
|
||||||
backend_progress.o \
|
backend_progress.o \
|
||||||
backend_status.o \
|
backend_status.o \
|
||||||
|
pgstat.o \
|
||||||
pgstat_archiver.o \
|
pgstat_archiver.o \
|
||||||
pgstat_bgwriter.o \
|
pgstat_bgwriter.o \
|
||||||
pgstat_checkpointer.o \
|
pgstat_checkpointer.o \
|
||||||
|
@ -84,7 +84,7 @@
|
|||||||
* Copyright (c) 2001-2022, PostgreSQL Global Development Group
|
* Copyright (c) 2001-2022, PostgreSQL Global Development Group
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* IDENTIFICATION
|
||||||
* src/backend/postmaster/pgstat.c
|
* src/backend/utils/activity/pgstat.c
|
||||||
* ----------
|
* ----------
|
||||||
*/
|
*/
|
||||||
#include "postgres.h"
|
#include "postgres.h"
|
Reference in New Issue
Block a user