1
0
mirror of https://github.com/postgres/postgres.git synced 2025-08-21 10:42:50 +03:00

Move gramparse.h to src/backend/parser

This header is semi-private, being used only in files related to
raw parsing, so move to the backend directory where those files
live. This allows removal of Makefile rules that symlink gram.h to
src/include/parser, since gramparse.h can now include gram.h from
within the same directory. This has the side-effect of no longer
installing gram.h and gramparse.h, but there doesn't seem to be a
good reason to continue doing so.

Per suggestion from Andres Freund and Peter Eisentraut
Discussion: https://www.postgresql.org/message-id/20220904181759.px6uosll6zbxcum5%40awork3.anarazel.de
This commit is contained in:
John Naylor
2022-09-14 10:41:44 +07:00
parent f352e2d08a
commit ecaf7c5df5
10 changed files with 8 additions and 20 deletions

View File

@@ -22,7 +22,7 @@
#include "postgres.h"
#include "mb/pg_wchar.h"
#include "parser/gramparse.h"
#include "gramparse.h"
#include "parser/parser.h"
#include "parser/scansup.h"