!3022 修复libpq模块parser的文件引用问题

Merge pull request !3022 from fugang/parser_opt
This commit is contained in:
opengauss-bot
2023-03-04 02:16:22 +00:00
committed by Gitee
2 changed files with 5 additions and 1 deletions

View File

@ -13,7 +13,10 @@ subdir = src/common/interfaces/libpq/frontend_parser
top_builddir = ../../../../../
backenddir = $(top_builddir)/src/common/backend
# where to find gen_keywordlist.pl and subsidiary files
TOOLSDIR = $(top_srcdir)/src/tools
GEN_KEYWORDLIST = $(PERL) -I $(TOOLSDIR) $(TOOLSDIR)/gen_keywordlist.pl
GEN_KEYWORDLIST_DEPS = $(TOOLSDIR)/gen_keywordlist.pl $(TOOLSDIR)/PerfectHash.pm
# shared library parameters
NAME= parser_frontend

View File

@ -32,6 +32,7 @@
#include "gram.hpp"
#include "parser/gramparse.h"
#include <setjmp.h>
#include "parser/kwlist_d.h"
extern void resetOperatorPlusFlag();
extern bool check_length();