Re: pgsql: Move gramparse.h to src/backend/parser

From: John Naylor <john(dot)naylor(at)enterprisedb(dot)com>
To: Andres Freund <andres(at)anarazel(dot)de>
Cc: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>, John Naylor <john(dot)naylor(at)postgresql(dot)org>, pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: Re: pgsql: Move gramparse.h to src/backend/parser
Date: 2022-09-15 03:52:31
Message-ID: CAFBsxsGCoEpiSWUBxnkKFq5S0oNtfB9P+rOjXtgiNLZYDfXa5w@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

On Thu, Sep 15, 2022 at 4:04 AM Andres Freund <andres(at)anarazel(dot)de> wrote:
>
> The most general solution I can see would be
>
> diff --git i/src/backend/common.mk w/src/backend/common.mk
> index fa96a82b1a0..61861f5c7eb 100644
> --- i/src/backend/common.mk
> +++ w/src/backend/common.mk
> @@ -23,6 +23,7 @@ objfiles.txt: Makefile $(SUBDIROBJS) $(OBJS)
>
> ifeq ($(with_llvm), yes)
> objfiles.txt: $(patsubst %.o,%.bc, $(OBJS))
> +$(patsubst %.o,%.bc, $(OBJS)): $(OBJS)
> endif

Since there have been no other ideas in the past few hours, I will
push this but it will be a blind attempt since it seems sporadic and
doesn't happen to reproduce for me.

--
John Naylor
EDB: http://www.enterprisedb.com

In response to

Responses

Browse pgsql-committers by date

  From Date Subject
Next Message John Naylor 2022-09-15 03:56:55 pgsql: Blind attempt to fix LLVM dependency in the backend
Previous Message Peter Smith 2022-09-15 01:57:28 Re: pgsql: Doc: Explain about Column List feature.