Обсуждение: pgsql: Factor out the common subexpression month_remainder *

Поиск
Список
Период
Сортировка

pgsql: Factor out the common subexpression month_remainder *

От
tgl@svr1.postgresql.org (Tom Lane)
Дата:
Log Message:
-----------
Factor out the common subexpression month_remainder * DAYS_PER_MONTH
in interval_mul and interval_div.  This avoids an optimization bug
in A Certain Company's compiler (and given their explanation, I wouldn't
be surprised if other compilers blow it too).  Besides the code seems
more clear this way --- in the original formulation, you had to mentally
recognize the common subexpression in order to understand what was going
on.

Modified Files:
--------------
    pgsql/src/backend/utils/adt:
        timestamp.c (r1.150 -> r1.151)
        (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/utils/adt/timestamp.c.diff?r1=1.150&r2=1.151)