1
0
mirror of https://github.com/postgres/postgres.git synced 2025-10-27 00:12:01 +03:00

Create explain_dr.c and move DestReceiver-related code there.

explain.c has grown rather large, and the code that deals with the
DestReceiver that supports the SERIALIZE option is pretty easily severable
from the rest of explain.c; hence, move it to a separate file.

Reviewed-by: Peter Geoghegan <pg@bowt.ie>
Discussion: http://postgr.es/m/CA+TgmoYutMw1Jgo8BWUmB3TqnOhsEAJiYO=rOQufF4gPLWmkLQ@mail.gmail.com
This commit is contained in:
Robert Haas
2025-02-27 13:14:16 -05:00
parent 9173e8b604
commit 555960a0fb
5 changed files with 341 additions and 298 deletions

View File

@@ -22,6 +22,7 @@ backend_sources += files(
'dropcmds.c',
'event_trigger.c',
'explain.c',
'explain_dr.c',
'explain_format.c',
'extension.c',
'foreigncmds.c',