summaryrefslogtreecommitdiff
path: root/src/include/parser
diff options
context:
space:
mode:
authorMichael Paquier2023-01-21 02:48:37 +0000
committerMichael Paquier2023-01-21 02:48:37 +0000
commit8eba3e3f020843a7641121e778e161b58ec2e490 (patch)
tree8736c44bf6ad786f6c55ca30bd44762e41bd54b3 /src/include/parser
parent557890920dd03b5a7839e81deeb6099bd43f3b29 (diff)
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/include/parser')
-rw-r--r--src/include/parser/analyze.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/parser/analyze.h b/src/include/parser/analyze.h
index c97be6efcf4..1cef1833a66 100644
--- a/src/include/parser/analyze.h
+++ b/src/include/parser/analyze.h
@@ -15,8 +15,8 @@
#define ANALYZE_H
#include "nodes/params.h"
+#include "nodes/queryjumble.h"
#include "parser/parse_node.h"
-#include "utils/queryjumble.h"
/* Hook for plugins to get control at end of parse analysis */
typedef void (*post_parse_analyze_hook_type) (ParseState *pstate,