problem with empty arguments of trigger procedure - Mailing list pgadmin-support

From Michał Sienicki
Subject problem with empty arguments of trigger procedure
Date
Msg-id 4FF2A7BE.5040005@instytut.com.pl
Whole thread Raw
Responses Re: problem with empty arguments of trigger procedure
List 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


pgadmin-support by date:

Previous
From: Dave Page
Date:
Subject: Re: 'create script' not usable for columns set 'not null' and 'default'
Next
From: Dave Page
Date:
Subject: Re: Prevent loss of query text when pgAdmin crashes or freezes