Re: [HACKERS] Ordering of pg_dump output

Поиск
Список
Период
Сортировка
От Chris Bitmead
Тема Re: [HACKERS] Ordering of pg_dump output
Дата
Msg-id 38A09D9B.F7833335@nimrod.itg.telecom.com.au
обсуждение исходный текст
Ответ на Re: [HACKERS] network_ops in 7.0 and pg_dump question  (Oleg Bartunov <oleg@sai.msu.su>)
Список pgsql-hackers
> Tom Lane wrote:
> >
> > The simplest real solution I've heard so far is to dump database objects
> > in order by OID rather than doing it strictly by type.

Hmm. Now if my OO stuff was working I guess pg_dump could be implemented
as...

List<PGObject*> dblist = pgselect("SELECT ** from object order by oid");
while (dblist.begin(); !dblist.atEnd(); dblist++) {dblist.obj().dump();


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

Предыдущее
От: Chris Bitmead
Дата:
Сообщение: Re: AW: [HACKERS] Another nasty cache problem
Следующее
От: Peter Eisentraut
Дата:
Сообщение: Re: [HACKERS] Ordering of pg_dump output