1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-06 07:49:08 +03:00
Files
postgres/src/backend/tcop/meson.build
Heikki Linnakangas 05c3980e7f Move code for backend startup to separate file
This is code that runs in the backend process after forking, rather
than postmaster. Move it out of postmaster.c for clarity.

Reviewed-by: Tristan Partin, Andres Freund
Discussion: https://www.postgresql.org/message-id/7a59b073-5b5b-151e-7ed3-8b01ff7ce9ef@iki.fi
2024-03-18 11:38:10 +02:00

12 lines
202 B
Meson

# Copyright (c) 2022-2024, PostgreSQL Global Development Group
backend_sources += files(
'backend_startup.c',
'cmdtag.c',
'dest.c',
'fastpath.c',
'postgres.c',
'pquery.c',
'utility.c',
)