Sunday, September 21, 2008

Re: [HACKERS] Predictable order of SQL commands in pg_dump

Great! Would it be implemented in a next version? Seems it would be
very helpful, especially for people who commit database structure to
CVS/SVN once per minute to track changes history (or similar)...


On Sun, Sep 21, 2008 at 11:57 PM, Tom Lane <tgl@sss.pgh.pa.us> wrote:
> "Dmitry Koterov" <dmitry@koterov.ru> writes:
>> CREATE TRIGGER t000_set_id
>> - BEFORE INSERT OR DELETE OR UPDATE ON a
>> + BEFORE INSERT OR DELETE OR UPDATE ON b
>> FOR EACH ROW
>> EXECUTE PROCEDURE i_trg();
>
>> CREATE TRIGGER t000_set_id
>> - BEFORE INSERT OR DELETE OR UPDATE ON b
>> + BEFORE INSERT OR DELETE OR UPDATE ON a
>> FOR EACH ROW
>> EXECUTE PROCEDURE i_trg();
>
>> You see, object names are the same, but ordering is mixed.
>
> Yeah, because the sort is just on object name.
>
> For objects of the same type I suppose we could take a look at their
> owning object's name too ...
>
> regards, tom lane
>

--
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers

No comments: