Re: pg_xlogdump --stats

Поиск
Список
Период
Сортировка
От Andres Freund
Тема Re: pg_xlogdump --stats
Дата
Msg-id 20140704103617.GR25909@awork2.anarazel.de
обсуждение исходный текст
Ответ на Re: pg_xlogdump --stats  ("gotoschool6g" <gotoschool6g@gmail.com>)
Ответы Re: pg_xlogdump --stats  (Alvaro Herrera <alvherre@2ndquadrant.com>)
Список pgsql-hackers
On 2014-07-04 18:31:34 +0800, gotoschool6g wrote:
> > 
> > I'm pretty sure that most committers would want to apply the 
> > rm_identity part in a separate commit first. Could you make it 
> > two patches, one introducing rm_identity, and another with 
> > xlogdump using it? 
> 
> Carp the code:
> 
> const char *
> clog_identify(uint8 info)
> { 
>  switch (info)
>  {
>       case CLOG_ZEROPAGE:
>        return "ZEROPAGE";
>       case CLOG_TRUNCATE:
>        return "TRUNCATE";
>        break;
>  }
>  return NULL;
> }
> 
> or
> 
> const char *
> clog_identify(uint8 info)
> {
>         if(info==CLOG_ZEROPAGE)return "ZEROPAGE";
>         if(info==CLOG_TRUNCATE)return "TRUNCATE";
>         return NULL;
> }
> 
> is a bit faster than:

Any halfway decent compiler will not use a local variable here. Don't
think that matters much. Also the code isn't a performance bottleneck...

Greetings,

Andres Freund

-- Andres Freund                       http://www.2ndQuadrant.com/PostgreSQL Development, 24x7 Support, Training &
Services



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

Предыдущее
От: "gotoschool6g"
Дата:
Сообщение: Re: pg_xlogdump --stats
Следующее
От:
Дата:
Сообщение: Re: pg_receivexlog add synchronous mode