Re: Rethinking pg_dump's function sorting code

From: Marko Tiikkaja <marko(at)joh(dot)to>
To: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>, pgsql-hackers(at)postgreSQL(dot)org
Subject: Re: Rethinking pg_dump's function sorting code
Date: 2015-03-06 08:30:29
Message-ID: 54F965A5.2010704@joh.to
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

On 2015-03-06 01:28, Tom Lane wrote:
> In bug #12832 Marko Tiikkaja points out that commit
> 7b583b20b1c95acb621c71251150beef958bb603 created a rather unnecessary
> dump failure hazard, since it applies pg_get_function_identity_arguments()
> to every function in the database, even those that won't get dumped.
> I think we should fix this by getting rid of pg_dump's use of that
> function altogether. A low-tech way to sort functions of identical names
> would be to compare argument type OIDs, as in the attached simple patch.
> If people feel it's important to avoid depending on numerical OID order,
> we could instead look up type names locally and compare them as in the
> attached less-simple patch. (Both patches neglect reverting the data
> collection aspects of the prior commit, since that's mechanical; the only
> interesting part is what we'll do to sort.)
>
> Neither patch will exactly preserve the sort behavior of the current
> code, but I don't think that's important.
>
> Comments?

I have my own cow in this ditch, but I would much prefer the sort to be
done based on the type name. That way the order is still consistent
between two databases where the objects were created in a different order.

.m

In response to

Browse pgsql-hackers by date

  From Date Subject
Next Message Noah Misch 2015-03-06 08:33:28 Re: Rethinking pg_dump's function sorting code
Previous Message Ashutosh Bapat 2015-03-06 07:55:24 Re: Combining Aggregates