summaryrefslogtreecommitdiff
path: root/src/include/tcop
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2020-03-21 18:28:44 -0400
committerTom Lane <tgl@sss.pgh.pa.us>2020-03-21 18:28:44 -0400
commitd0587f52b3bb898db3c0011954de6ae9adc076c8 (patch)
treee29a9d2d7cbded6e42033f56bb2996a5de822b19 /src/include/tcop
parentcb2fd7eac285b1b0a24eeb2b8ed4456b66c5a09f (diff)
downloadpostgresql-d0587f52b3bb898db3c0011954de6ae9adc076c8.tar.gz
Fix up recent breakage of headerscheck and cpluspluscheck.
headerscheck and cpluspluscheck should skip the recently-added cmdtaglist.h header, since (like kwlist.h and some other similarly- designed headers) it's not meant to be included standalone. evtcache.h was missing an #include to support its usage of Bitmapset. typecmds.h was missing an #include to support its usage of ParseState. The first two of these were evidently oversights in commit 2f9661311. I didn't track down exactly which change broke typecmds.h, but it must have been some rearrangement in one of its existing inclusions, because it's referenced ParseState for quite a long time and there were not complaints from these checking programs before.
Diffstat (limited to 'src/include/tcop')
-rw-r--r--src/include/tcop/cmdtaglist.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/tcop/cmdtaglist.h b/src/include/tcop/cmdtaglist.h
index ed72770978..8ef0f55e74 100644
--- a/src/include/tcop/cmdtaglist.h
+++ b/src/include/tcop/cmdtaglist.h
@@ -11,7 +11,7 @@
* Portions Copyright (c) 1996-2020, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * src/backend/tcop/cmdtaglist.h
+ * src/include/tcop/cmdtaglist.h
*
*----------------------------------------------------------------------
*/