pgsql: Fix pg_dump's heuristic for deciding which casts to dump.

Поиск
Список
Период
Сортировка
От Tom Lane
Тема pgsql: Fix pg_dump's heuristic for deciding which casts to dump.
Дата
Msg-id E1YLO8b-0008DJ-RT@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Fix pg_dump's heuristic for deciding which casts to dump.

Back in 2003 we had a discussion about how to decide which casts to dump.
At the time pg_dump really only considered an object's containing schema
to decide what to dump (ie, dump whatever's not in pg_catalog), and so
we chose a complicated idea involving whether the underlying types were to
be dumped (cf commit a6790ce85752b67ad994f55fdf1a450262ccc32e).  But users
are allowed to create casts between built-in types, and we failed to dump
such casts.  Let's get rid of that heuristic, which has accreted even more
ugliness since then, in favor of just looking at the cast's OID to decide
if it's a built-in cast or not.

In passing, also fix some really ancient code that supposed that it had to
manufacture a dependency for the cast on its cast function; that's only
true when dumping from a pre-7.3 server.  This just resulted in some wasted
cycles and duplicate dependency-list entries with newer servers, but we
might as well improve it.

Per gripes from a number of people, most recently Greg Sabino Mullane.
Back-patch to all supported branches.

Branch
------
REL9_3_STABLE

Details
-------
http://git.postgresql.org/pg/commitdiff/a4e871caada8117d5ca712187fb2bb0f68ec2879

Modified Files
--------------
src/bin/pg_dump/pg_dump.c |   76 ++++++++++++++++-----------------------------
1 file changed, 26 insertions(+), 50 deletions(-)


В списке pgsql-committers по дате отправления:

Предыдущее
От: Tom Lane
Дата:
Сообщение: pgsql: Fix pg_dump's heuristic for deciding which casts to dump.
Следующее
От: Michael Meskes
Дата:
Сообщение: pgsql: Fixed array handling in ecpg.