problem with empty arguments of trigger procedure

From: Michał Sienicki <Michal(dot)Sienicki(at)instytut(dot)com(dot)pl>
To: pgadmin-support(at)postgresql(dot)org
Subject: problem with empty arguments of trigger procedure
Date: 2012-07-03 08:05:18
Message-ID: 4FF2A7BE.5040005@instytut.com.pl
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgadmin-support

Bug report - pgAdmin 1.14.3, Windows

Trigger definition is not shown properly when function contains "empty" arguments.

Example

Trigger definition:

CREATE TRIGGER test_trigger
BEFORE INSERT
ON test_table
FOR EACH ROW
EXECUTE PROCEDURE test_function('arg1', '', 'arg3');

is displayed in pgAdmin as:

CREATE TRIGGER test_trigger
BEFORE INSERT
ON test_table
FOR EACH ROW
EXECUTE PROCEDURE test_function('arg1', 'arg3');

MS

Responses

Browse pgadmin-support by date

  From Date Subject
Next Message Dave Page 2012-07-03 08:09:59 Re: 'create script' not usable for columns set 'not null' and 'default'
Previous Message Rohan Carly 2012-07-03 07:38:11 'create script' not usable for columns set 'not null' and 'default'