Re: Multiple -t options for pg_dump

Поиск
Список
Период
Сортировка
От Neil Conway
Тема Re: Multiple -t options for pg_dump
Дата
Msg-id 1127242166.17597.17.camel@localhost.localdomain
обсуждение исходный текст
Ответ на Re: Multiple -t options for pg_dump  (David Fetter <david@fetter.org>)
Список pgsql-patches
On Tue, 2005-20-09 at 11:33 -0700, David Fetter wrote:
> I am hoping to make a case for inclusion in 8.1.  The code is
> completely isolated in one command and does not affect anyone who
> does not use the new features.

On those grounds we could include a lot of new features during the 8.1
beta period. IMHO it is too late for new features at this point in the
release cycle.

> > AFAICS the goto is unnecessary -- just break out of the loop when you
> > find a match, and test i == ntups outside the loop.
>
> I tried that.  How do I break out of both loops without a goto?

Oh, yeah, I guess you need a goto, but you can at least avoid rechecking
the loop condition:

for (;;)
{
    for (;;)
    {
        if (match_found)
            goto done;
    }
}

/* If we got here, no match */
error();

done: /* Otherwise we're good */

-Neil



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

Предыдущее
От: David Fetter
Дата:
Сообщение: Re: Multiple -t options for pg_dump
Следующее
От: Bruce Momjian
Дата:
Сообщение: Re: [PORTS] Solaris - psql returns 0 instead of 1 for file not found.