1
0
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:
Andres Freund
2022-04-06 21:29:46 -07:00
parent 1db4e5a4ee
commit fbfe6910ec
3 changed files with 2 additions and 2 deletions

View File

@ -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 \

View File

@ -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 \

View File

@ -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"