Re: ambuild parameters

Lists: pgsql-general
From: david(dot)hoksza(at)seznam(dot)cz
To: pgsql-general(at)postgresql(dot)org
Subject: Re: ambuild parameters
Date: 2006-03-20 07:02:15
Message-ID: 133318512.20060320080215@seznam.cz
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-general

Thanks for answering, it was a good guess, I really didn't mark it,
but unfortunately it didn't solve my problem. It still falls down,
when I try to access the argument.
But it seems strange to me, that converting to Relation is OK:

Relation index_rel = (Relation) PG_GETARG_POINTER(1);

and also that comparing to NULL is OK:

if (index_rel == NULL).

Obviously the problem comes, when touching inside the structure in
RelationGetNumberOfBlocks.

I'm running it on Windows XP, but i guess that should be no problem in
this case?
Don't you have possibly any other ideas? I'm implementing a framework
for indexing into PG as my diploma work, so it's quite importatnt to
me...

Thanks,
David Hoksza

________________________________
19. března 2006, 22:43:48, napsal jste:

TL> david(dot)hoksza(at)seznam(dot)cz writes:
>> Hi, I'm trying to implement my own access method. Now I've implemented
>> and compiled it but I've problems when I try to use it.

TL> Wild guess: did you mark all your functions as V1 call convention?
TL> The internal functions don't need to be marked, but dynamically loaded
TL> ones do.

TL> regards, tom lane


From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: david(dot)hoksza(at)seznam(dot)cz
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: ambuild parameters
Date: 2006-03-20 22:20:12
Message-ID: 8302.1142893212@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-general

david(dot)hoksza(at)seznam(dot)cz writes:
> Thanks for answering, it was a good guess, I really didn't mark it,
> but unfortunately it didn't solve my problem. It still falls down,
> when I try to access the argument.
> But it seems strange to me, that converting to Relation is OK:

> Relation index_rel = (Relation) PG_GETARG_POINTER(1);

> and also that comparing to NULL is OK:

> if (index_rel == NULL).

Neither of those prove a thing (except that you don't have a null
pointer). I'd still guess that you don't have the V1 parameter marking
correct, and so what the function thinks it's picking up is garbage
because the backend is not passing the parameters the way the function
expects.

You might try using gdb to see exactly what parameter values the
function thinks it's getting, or print them out to the log before you
use them.

regards, tom lane


From: david(dot)hoksza(at)seznam(dot)cz
To: pgsql-general(at)postgresql(dot)org
Subject: Re: ambuild parameters
Date: 2006-03-22 00:19:26
Message-ID: 1786437015.20060322011926@seznam.cz
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-general

I got problems when running gdb. In MINGW I run
"postgres -D ... dbname". Then I run gdb, but the problem is:

$ gdb
GNU gdb 5.2.1
Copyright 2002 Free Software Foundation, Inc.
GDB is free software, covered by the GNU General Public License, and you are
welcome to change it and/or distribute copies of it under certain conditions.
Type "show copying" to see the conditions.
There is absolutely no warranty for GDB. Type "show warranty" for details.
This GDB was configured as "i686-pc-mingw32".
(gdb) attach 4204
Attaching to process 4204
[Switching to thread 4204.0x1750]
(gdb) dll-symbols libatomrtree.dll
(gdb) break atomrtbuild
(gdb) Cannot access memory at address 0x65dc2110

Probably the reason is, that the dll is not loaded yet? But what's the
right way to set breakpoint into dll, which isn't loaded yet?

And about the V1 convention - I got in the .c file:

PG_FUNCTION_INFO_V1(atomrtbuild);

Datum
atomrtbuild(PG_FUNCTION_ARGS)
{
Relation heap_rel = (Relation) PG_GETARG_POINTER(0);
Relation index_rel = (Relation) PG_GETARG_POINTER(1);
IndexInfo *indexInfo = (IndexInfo *) PG_GETARG_POINTER(2);

Thanks,
David Hoksza
________________________________
20. března 2006, 23:20:12, napsal jste:

TL> david(dot)hoksza(at)seznam(dot)cz writes:
>> Thanks for answering, it was a good guess, I really didn't mark it,
>> but unfortunately it didn't solve my problem. It still falls down,
>> when I try to access the argument.
>> But it seems strange to me, that converting to Relation is OK:

>> Relation index_rel = (Relation) PG_GETARG_POINTER(1);

>> and also that comparing to NULL is OK:

>> if (index_rel == NULL).

TL> Neither of those prove a thing (except that you don't have a null
TL> pointer). I'd still guess that you don't have the V1 parameter marking
TL> correct, and so what the function thinks it's picking up is garbage
TL> because the backend is not passing the parameters the way the function
TL> expects.

TL> You might try using gdb to see exactly what parameter values the
TL> function thinks it's getting, or print them out to the log before you
TL> use them.

TL> regards, tom lane

TL> ---------------------------(end of
TL> broadcast)---------------------------
TL> TIP 2: Don't 'kill -9' the postmaster


From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: david(dot)hoksza(at)seznam(dot)cz
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: ambuild parameters
Date: 2006-03-22 03:26:07
Message-ID: 9473.1142997967@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-general

david(dot)hoksza(at)seznam(dot)cz writes:
> Probably the reason is, that the dll is not loaded yet? But what's the
> right way to set breakpoint into dll, which isn't loaded yet?

Try forcing the .so to be loaded via the SQL "LOAD" command before you
attach to the process with gdb.

regards, tom lane


From: "Aftab Alam" <aalam(at)tatashare(dot)com>
To: <david(dot)hoksza(at)seznam(dot)cz>, <pgsql-general(at)postgresql(dot)org>
Subject: Re: ambuild parameters
Date: 2006-03-22 03:38:24
Message-ID: 003401c64d62$12eea000$ec1010ac@aftabn463
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-general

unsubscribe

Regards,

-----Original Message-----
From: pgsql-general-owner(at)postgresql(dot)org
[mailto:pgsql-general-owner(at)postgresql(dot)org]On Behalf Of
david(dot)hoksza(at)seznam(dot)cz
Sent: Wednesday, March 22, 2006 5:49 AM
To: pgsql-general(at)postgresql(dot)org
Subject: Re: [GENERAL] ambuild parameters

I got problems when running gdb. In MINGW I run
"postgres -D ... dbname". Then I run gdb, but the problem is:

$ gdb
GNU gdb 5.2.1
Copyright 2002 Free Software Foundation, Inc.
GDB is free software, covered by the GNU General Public License, and you are
welcome to change it and/or distribute copies of it under certain
conditions.
Type "show copying" to see the conditions.
There is absolutely no warranty for GDB. Type "show warranty" for details.
This GDB was configured as "i686-pc-mingw32".
(gdb) attach 4204
Attaching to process 4204
[Switching to thread 4204.0x1750]
(gdb) dll-symbols libatomrtree.dll
(gdb) break atomrtbuild
(gdb) Cannot access memory at address 0x65dc2110

Probably the reason is, that the dll is not loaded yet? But what's the
right way to set breakpoint into dll, which isn't loaded yet?

And about the V1 convention - I got in the .c file:

PG_FUNCTION_INFO_V1(atomrtbuild);

Datum
atomrtbuild(PG_FUNCTION_ARGS)
{
Relation heap_rel = (Relation)
PG_GETARG_POINTER(0);
Relation index_rel = (Relation)
PG_GETARG_POINTER(1);
IndexInfo *indexInfo = (IndexInfo *)
PG_GETARG_POINTER(2);

Thanks,
David Hoksza
________________________________
20. března 2006, 23:20:12, napsal jste:

TL> david(dot)hoksza(at)seznam(dot)cz writes:
>> Thanks for answering, it was a good guess, I really didn't mark it,
>> but unfortunately it didn't solve my problem. It still falls down,
>> when I try to access the argument.
>> But it seems strange to me, that converting to Relation is OK:

>> Relation index_rel = (Relation) PG_GETARG_POINTER(1);

>> and also that comparing to NULL is OK:

>> if (index_rel == NULL).

TL> Neither of those prove a thing (except that you don't have a null
TL> pointer). I'd still guess that you don't have the V1 parameter marking
TL> correct, and so what the function thinks it's picking up is garbage
TL> because the backend is not passing the parameters the way the function
TL> expects.

TL> You might try using gdb to see exactly what parameter values the
TL> function thinks it's getting, or print them out to the log before you
TL> use them.

TL> regards, tom lane

TL> ---------------------------(end of
TL> broadcast)---------------------------
TL> TIP 2: Don't 'kill -9' the postmaster

---------------------------(end of broadcast)---------------------------
TIP 2: Don't 'kill -9' the postmaster


From: david(dot)hoksza(at)seznam(dot)cz
To: pgsql-general(at)postgresql(dot)org
Subject: Re: ambuild parameters
Date: 2006-03-22 06:23:26
Message-ID: 238367896.20060322072326@seznam.cz
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-general

Yes, it came across my mind immediately atfter sending the mail
yesterday , but didn't help:( (and it's dll - it's on win32).

David Hoksza

________________________________
22. března 2006, 4:26:07, napsal jste:

TL> david(dot)hoksza(at)seznam(dot)cz writes:
>> Probably the reason is, that the dll is not loaded yet? But what's the
>> right way to set breakpoint into dll, which isn't loaded yet?

TL> Try forcing the .so to be loaded via the SQL "LOAD" command before you
TL> attach to the process with gdb.

TL> regards, tom lane