summaryrefslogtreecommitdiff
path: root/src/backend/commands/prepare.c
diff options
context:
space:
mode:
authorRobert Haas2025-02-27 17:37:10 +0000
committerRobert Haas2025-02-27 17:37:10 +0000
commit9173e8b604636633a8e3aca54bb56a437bffa718 (patch)
tree3d2ab9fea6b2bf5586da2b7e9dc5c10af0e82041 /src/backend/commands/prepare.c
parent95dbd827f2edc4d10bebd7e840a0bd6782cf69b7 (diff)
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 <[email protected]> Discussion: http://postgr.es/m/CA+TgmoYutMw1Jgo8BWUmB3TqnOhsEAJiYO=rOQufF4gPLWmkLQ@mail.gmail.com
Diffstat (limited to 'src/backend/commands/prepare.c')
-rw-r--r--src/backend/commands/prepare.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/backend/commands/prepare.c b/src/backend/commands/prepare.c
index c025b1f9f8c..4d68d4d25c7 100644
--- a/src/backend/commands/prepare.c
+++ b/src/backend/commands/prepare.c
@@ -21,6 +21,7 @@
#include "access/xact.h"
#include "catalog/pg_type.h"
#include "commands/createas.h"
+#include "commands/explain_format.h"
#include "commands/prepare.h"
#include "funcapi.h"
#include "nodes/nodeFuncs.h"