PgSQL 8.0.0 - contributed: problem compiling

Поиск
Список
Период
Сортировка
От Nikola Milutinovic
Тема PgSQL 8.0.0 - contributed: problem compiling
Дата
Msg-id 411F26FB.2050604@ev.co.yu
обсуждение исходный текст
Ответы Re: PgSQL 8.0.0 - contributed: problem compiling  (Joe Conway <mail@joeconway.com>)
Re: PgSQL 8.0.0 - contributed: problem compiling  (Richard Poole <rp@guests.deus.net>)
Список pgsql-general
Hi all.

I've managed to get 8.0.0 up and running. Now I'm compiling some
contributed software and I hit a show stopper. Contrib - DBSize

Papa-Legba:/home/r/root/5.1/postgresql-8.0.0beta1/contrib/dbsize# gmake
; gmake install
sed 's,MODULE_PATHNAME,$libdir/dbsize,g' dbsize.sql.in >dbsize.sql
cc -std -ieee -pthread -O3 -c99  -I. -I../../src/include -pthread   -c
-o dbsize.o dbsize.c
cc: Error: dbsize.c, line 58: In this statement, "GetDatabasePath"
expects 2 arguments, but 1 are supplied. (toofewargs)
        dbpath = GetDatabasePath(dbid);
-----------------^
gmake: *** [dbsize.o] Error 1
cc -std -ieee -pthread -O3 -c99  -I. -I../../src/include -pthread   -c
-o dbsize.o dbsize.c
cc: Error: dbsize.c, line 58: In this statement, "GetDatabasePath"
expects 2 arguments, but 1 are supplied. (toofewargs)
        dbpath = GetDatabasePath(dbid);
-----------------^
gmake: *** [dbsize.o] Error 1

Inspecting the "./src/include/catalog/catalog.h" I can see that it takes
two arguments:

extern char *GetDatabasePath(Oid dbNode, Oid spcNode);

The problematic code segment is:

Datum database_size(PG_FUNCTION_ARGS)
{
        Name            dbname = PG_GETARG_NAME(0);

        Oid                     dbid;
        char       *dbpath;
        DIR                *dirdesc;
        struct dirent *direntry;
        int64           totalsize;

        dbid = get_database_oid(NameStr(*dbname));
        if (!OidIsValid(dbid))
                ereport(ERROR, (errcode(ERRCODE_UNDEFINED_DATABASE),
                        errmsg("database \"%s\" does not exist",
NameStr(*dbname))));

        dbpath = GetDatabasePath(dbid);

What should be the change in this code segment? "libPQ" docs are not
informative...

Nix.

В списке pgsql-general по дате отправления:

Предыдущее
От: Paramveer.Singh@trilogy.com
Дата:
Сообщение: exception handling support in pgSQL
Следующее
От: Joe Conway
Дата:
Сообщение: Re: PgSQL 8.0.0 - contributed: problem compiling