aboutsummaryrefslogtreecommitdiff
path: root/src/backend/parser/analyze.c
diff options
context:
space:
mode:
authorMichael Paquier <michael@paquier.xyz>2023-01-21 11:48:37 +0900
committerMichael Paquier <michael@paquier.xyz>2023-01-21 11:48:37 +0900
commit8eba3e3f020843a7641121e778e161b58ec2e490 (patch)
tree8736c44bf6ad786f6c55ca30bd44762e41bd54b3 /src/backend/parser/analyze.c
parent557890920dd03b5a7839e81deeb6099bd43f3b29 (diff)
downloadpostgresql-8eba3e3f020843a7641121e778e161b58ec2e490.tar.gz
postgresql-8eba3e3f020843a7641121e778e161b58ec2e490.zip
Move queryjumble.c code to src/backend/nodes/
This will ease a follow-up move that will generate automatically this code. The C file is renamed, for consistency with the node-related files whose code are generated by gen_node_support.pl: - queryjumble.c -> queryjumblefuncs.c - utils/queryjumble.h -> nodes/queryjumble.h Per a suggestion from Peter Eisentraut. Reviewed-by: Peter Eisentraut Discussion: https://postgr.es/m/Y5BHOUhX3zTH/ig6@paquier.xyz
Diffstat (limited to 'src/backend/parser/analyze.c')
-rw-r--r--src/backend/parser/analyze.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/parser/analyze.c b/src/backend/parser/analyze.c
index 5b90974e830..4a817b75ad8 100644
--- a/src/backend/parser/analyze.c
+++ b/src/backend/parser/analyze.c
@@ -30,6 +30,7 @@
#include "miscadmin.h"
#include "nodes/makefuncs.h"
#include "nodes/nodeFuncs.h"
+#include "nodes/queryjumble.h"
#include "optimizer/optimizer.h"
#include "parser/analyze.h"
#include "parser/parse_agg.h"
@@ -50,7 +51,6 @@
#include "utils/backend_status.h"
#include "utils/builtins.h"
#include "utils/guc.h"
-#include "utils/queryjumble.h"
#include "utils/rel.h"
#include "utils/syscache.h"