Hi Dave,
I was investigating the trigger arguments bug that
I reported yesterday and in doing so have found another bug.
1)
Set show system objects;
Open the database 'template1';
Open Schema pg_catalog;
Select table pg_trigger;
Right click on the mouse button and select from
pop-up menu 'View data';
You then get the following error
message:
The instruction at "0x1f5323ef" referenced memory
at "0x00000014". The memory could not be read...
You also get this message if you try and run the
query SELECT * FROM pg_trigger
2)
Back to the trigger arguments bug reported
yesterday. The arguments stored in the table pg_trigger, column name tgargs is
of type bytea. This is what is being displayed as the arguments in the
definition for triggers. Obviously it is not stored as straight text so that's
why you get things like ??? being displayed.
I'm not in any hurry to have fixes, as I've
got by since version 1.3. with most things. Version 1.4.12 is even better and
have to congratulate you on a good job. Just
letting you know so bugs don't get ported to the new C++
version.
Regards
Donald Fraser
|
- Re: [pgadmin-support] Bugs Donald Fraser
- Re: [pgadmin-support] Bugs Dave Page