summaryrefslogtreecommitdiff
path: root/contrib
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 /contrib
parent557890920dd03b5a7839e81deeb6099bd43f3b29 (diff)
downloadpostgresql-8eba3e3f020843a7641121e778e161b58ec2e490.tar.gz
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 'contrib')
-rw-r--r--contrib/pg_stat_statements/pg_stat_statements.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/pg_stat_statements/pg_stat_statements.c b/contrib/pg_stat_statements/pg_stat_statements.c
index a7a72783e5..ad1fe44496 100644
--- a/contrib/pg_stat_statements/pg_stat_statements.c
+++ b/contrib/pg_stat_statements/pg_stat_statements.c
@@ -55,6 +55,7 @@
#include "jit/jit.h"
#include "mb/pg_wchar.h"
#include "miscadmin.h"
+#include "nodes/queryjumble.h"
#include "optimizer/planner.h"
#include "parser/analyze.h"
#include "parser/parsetree.h"
@@ -69,7 +70,6 @@
#include "tcop/utility.h"
#include "utils/acl.h"
#include "utils/builtins.h"
-#include "utils/queryjumble.h"
#include "utils/memutils.h"
#include "utils/timestamp.h"