Trigger Display Bugs in 1.12 pgAdmin

From: Christopher A Hotchkiss <christopher(dot)a(dot)hotchkiss(at)jpmchase(dot)com>
To: "pgadmin-support(at)postgresql(dot)org" <pgadmin-support(at)postgresql(dot)org>
Subject: Trigger Display Bugs in 1.12 pgAdmin
Date: 2010-09-24 19:26:02
Message-ID: 661872841ED1D04784B470897CDBFAF40C1FFA51E8@EMARC132VS01.exchad.jpmchase.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgadmin-support

To Who It May Concern,
I am using the new 1.12 pgAdmin on Windows XP SP3 and I have notice two display inaccuracies when connecting to a Postgres 9 database.

For example when creating the following trigger:

CREATE TRIGGER c_aud_trg
BEFORE INSERT OR UPDATE OR DELETE
ON ca
FOR EACH ROW
EXECUTE PROCEDURE c_aud_trg_trfunc();

It will get created correctly (checking with pgdump based on suggestions from the pgsql list).

However it will be displayed as:
CREATE TRIGGER c_aud_trg
BEFORE INSERT OR UPDATE
ON ca
FOR EACH ROW
EXECUTE PROCEDURE c_aud_trg_func(E'\\x');

If that same trigger is dropped and re-added using what is in the database, the following shows up:
CREATE TRIGGER c_aud_trg
BEFORE INSERT OR UPDATE
ON ca
FOR EACH ROW
EXECUTE PROCEDURE c_aud_trg_func(E'\\x5c7800');

The second issue is the ordering of 'update of' triggers. For example when creating the following trigger:
CREATE TRIGGER ca_trig
BEFORE UPDATE OF columnA OR DELETE
ON ca
FOR EACH ROW
EXECUTE PROCEDURE c_h_trg_func ();

It will be displayed as:
CREATE TRIGGER ca_trig
BEFORE UPDATE OR DELETE OF columnA
ON ca
FOR EACH ROW
EXECUTE PROCEDURE c_h_trg_func ();

This is a syntax error.

On a side note, does pgAdmin or Postgres have a bug tracker like bugzilla/trac/jira/etc?

Christopher A Hotchkiss
JPMorgan Chase & Co.
Email christopher(dot)a(dot)hotchkiss(at)jpmchase(dot)com

This communication is for informational purposes only. It is not
intended as an offer or solicitation for the purchase or sale of
any financial instrument or as an official confirmation of any
transaction. All market prices, data and other information are not
warranted as to completeness or accuracy and are subject to change
without notice. Any comments or statements made herein do not
necessarily reflect those of JPMorgan Chase & Co., its subsidiaries
and affiliates.

This transmission may contain information that is privileged,
confidential, legally privileged, and/or exempt from disclosure
under applicable law. If you are not the intended recipient, you
are hereby notified that any disclosure, copying, distribution, or
use of the information contained herein (including any reliance
thereon) is STRICTLY PROHIBITED. Although this transmission and any
attachments are believed to be free of any virus or other defect
that might affect any computer system into which it is received and
opened, it is the responsibility of the recipient to ensure that it
is virus free and no responsibility is accepted by JPMorgan Chase &
Co., its subsidiaries and affiliates, as applicable, for any loss
or damage arising in any way from its use. If you received this
transmission in error, please immediately contact the sender and
destroy the material in its entirety, whether in electronic or hard
copy format. Thank you.

Please refer to http://www.jpmorgan.com/pages/disclosures for
disclosures relating to European legal entities.

Responses

Browse pgadmin-support by date

  From Date Subject
Next Message Guillaume Lelarge 2010-09-24 22:54:02 Re: Trigger Display Bugs in 1.12 pgAdmin
Previous Message Michael Shapiro 2010-09-24 16:17:41 Re: dropping connection