From 9173e8b604636633a8e3aca54bb56a437bffa718 Mon Sep 17 00:00:00 2001 From: Robert Haas Date: Thu, 27 Feb 2025 12:37:10 -0500 Subject: Create explain_format.c and move relevant code there. explain.c has grown rather large, so move various functions that are principally concerned with output generation to a new source file, explain_format.c, instead of lumping them in with everything else that is part of explain.c Reviewed-by: Peter Geoghegan Discussion: http://postgr.es/m/CA+TgmoYutMw1Jgo8BWUmB3TqnOhsEAJiYO=rOQufF4gPLWmkLQ@mail.gmail.com --- contrib/postgres_fdw/postgres_fdw.c | 1 + 1 file changed, 1 insertion(+) (limited to 'contrib/postgres_fdw/postgres_fdw.c') diff --git a/contrib/postgres_fdw/postgres_fdw.c b/contrib/postgres_fdw/postgres_fdw.c index de43727a2a0..1131a8bf77e 100644 --- a/contrib/postgres_fdw/postgres_fdw.c +++ b/contrib/postgres_fdw/postgres_fdw.c @@ -20,6 +20,7 @@ #include "catalog/pg_opfamily.h" #include "commands/defrem.h" #include "commands/explain.h" +#include "commands/explain_format.h" #include "executor/execAsync.h" #include "foreign/fdwapi.h" #include "funcapi.h" -- cgit v1.2.3