Re: [PATCHES] Fix pg_dump dependency on postgres.h - Mailing list pgsql-hackers

From Zdenek Kotala
Subject Re: [PATCHES] Fix pg_dump dependency on postgres.h
Date
Msg-id 473492A3.9070900@sun.com
Whole thread Raw
List pgsql-hackers
Zdenek Kotala wrote:
> Attached patch removes pg_dump dependency on postgres.h. The main reason
> for that was discussed there:
>
> http://archives.postgresql.org/pgsql-hackers/2007-10/msg01261.php
>

I found two problems there. One is that I forgot postgres.h include in
common.c. it is easy to fix. However second problem is more complicated.
dumputils.c calls ScandKeywordLookup function which is defined in
keyword.c. :(

I currently see two possible variant:

1) Put list of RESERVED keyword into dumputils and use bsearch for
lookup. It is easy to implement but it will be difficult to keep
synchronize these two list together.

2) Modify gram.y to generate parse.h which will be friendly for backend
and can be used in keyword.c. Probably add some ifdef ...

3) Put following fake into keyword.c before include "parse.h" line. It
is easiest way.

#define TYPE_IS_DECLARED 1
#define YYLTYPE_IS_DECLARED 1
#define YYLTYPE void*
#define YYSTYPE void*

    Comments or any ideas?

        Zdenek

pgsql-hackers by date:

Previous
From: Robert Treat
Date:
Subject: Re: [COMMITTERS] pgsql: - Add check of already changed page while replay WAL.
Next
From: Zdenek Kotala
Date:
Subject: Re: New tzdata available