aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Paquier <michael@paquier.xyz>2023-03-18 18:04:04 +0900
committerMichael Paquier <michael@paquier.xyz>2023-03-18 18:04:04 +0900
commit0e681cf0390ddd720424cd134a2c42dffc2934fd (patch)
treecd06887104143d0b110d779390e5d9f09e1b1d5d
parent3e59e5048d0f20debe4ad79b2e02ca2a76c5daed (diff)
downloadpostgresql-0e681cf0390ddd720424cd134a2c42dffc2934fd.tar.gz
postgresql-0e681cf0390ddd720424cd134a2c42dffc2934fd.zip
Add files related to query jumbling in src/include/nodes/ for meson
This caused ninja clean to not remove the two files generated by gen_node_support.pl for the query jumbling, for example: queryjumblefuncs.funcs.c and queryjumblefuncs.switch.c. Reported-by: Pavel Stehule Discussion: https://postgr.es/m/CAFj8pRBFiWVRyGYSPziyFuXJbHirNmfWwzbfTyCf8YOdiwK74w@mail.gmail.com
-rw-r--r--src/include/nodes/meson.build2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/include/nodes/meson.build b/src/include/nodes/meson.build
index efe0834afb4..9a8e85c4a5e 100644
--- a/src/include/nodes/meson.build
+++ b/src/include/nodes/meson.build
@@ -36,6 +36,7 @@ node_support_output = [
'readfuncs.funcs.c', 'readfuncs.switch.c',
'copyfuncs.funcs.c', 'copyfuncs.switch.c',
'equalfuncs.funcs.c', 'equalfuncs.switch.c',
+ 'queryjumblefuncs.funcs.c', 'queryjumblefuncs.switch.c',
]
node_support_install = [
dir_include_server / 'nodes',
@@ -43,6 +44,7 @@ node_support_install = [
false, false,
false, false,
false, false,
+ false, false,
]
generated_nodes = custom_target('nodetags.h',