Skip to content

Commit 9bdce3c

Browse files
j-naylorpull[bot]
authored andcommitted
Add missing exceptions to cpluspluscheck
dac048f added exceptions to headerscheck but failed to do the same for cpluspluscheck Per report from Andres Freund regarding CI Discussion:https://www.postgresql.org/message-id/20220904205743.y3ntq6ij3aibmxvy%40awork3.anarazel.de
1 parent 07b1555 commit 9bdce3c

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/tools/pginclude/cpluspluscheck

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,10 +122,18 @@ do
122122
# We can't make these Bison output files compilable standalone
123123
# without using "%code require", which old Bison versions lack.
124124
# parser/gram.h will be included by parser/gramparse.h anyway.
125+
test "$f" = contrib/cube/cubeparse.h && continue
126+
test "$f" = contrib/seg/segparse.h && continue
127+
test "$f" = src/backend/bootstrap/bootparse.h && continue
125128
test "$f" = src/include/parser/gram.h && continue
126129
test "$f" = src/backend/parser/gram.h && continue
130+
test "$f" = src/backend/replication/repl_gram.h && continue
131+
test "$f" = src/backend/replication/syncrep_gram.h && continue
132+
test "$f" = src/backend/utils/adt/jsonpath_gram.h && continue
133+
test "$f" = src/bin/pgbench/exprparse.h && continue
127134
test "$f" = src/pl/plpgsql/src/pl_gram.h && continue
128135
test "$f" = src/interfaces/ecpg/preproc/preproc.h && continue
136+
test "$f" = src/test/isolation/specparse.h && continue
129137

130138
# ppport.h is not under our control, so we can't make it standalone.
131139
test "$f" = src/pl/plperl/ppport.h && continue

0 commit comments

Comments
 (0)