Re: [PATCHES] Fix pg_dump dependency on postgres.h

Поиск
Список
Период
Сортировка
От Zdenek Kotala
Тема Re: [PATCHES] Fix pg_dump dependency on postgres.h
Дата
Msg-id 473492A3.9070900@sun.com
обсуждение исходный текст
Список 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 по дате отправления:

Предыдущее
От: Robert Treat
Дата:
Сообщение: Re: [COMMITTERS] pgsql: - Add check of already changed page while replay WAL.
Следующее
От: Zdenek Kotala
Дата:
Сообщение: Re: New tzdata available