Обсуждение: pgsql: Rewrite interval_hash() so that the hashcodes are equal for

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

pgsql: Rewrite interval_hash() so that the hashcodes are equal for

От
tgl@postgresql.org (Tom Lane)
Дата:
Log Message:
-----------
Rewrite interval_hash() so that the hashcodes are equal for values that
interval_eq() considers equal.  I'm not sure how that fundamental requirement
escaped us through multiple revisions of this hash function, but there it is;
it's been wrong since interval_hash was first written for PG 7.1.
Per bug #4748 from Roman Kononov.

Backpatch to all supported releases.

This patch changes the contents of hash indexes for interval columns.  That's
no particular problem for PG 8.4, since we've broken on-disk compatibility
of hash indexes already; but it will require a migration warning note in
the next minor releases of all existing branches: "if you have any hash
indexes on columns of type interval, REINDEX them after updating".

Tags:
----
REL8_0_STABLE

Modified Files:
--------------
    pgsql/src/backend/utils/adt:
        timestamp.c (r1.117.4.3 -> r1.117.4.4)
        (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/utils/adt/timestamp.c?r1=1.117.4.3&r2=1.117.4.4)
    pgsql/src/test/regress/expected:
        interval.out (r1.9.6.1 -> r1.9.6.2)
        (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/test/regress/expected/interval.out?r1=1.9.6.1&r2=1.9.6.2)
    pgsql/src/test/regress/sql:
        interval.sql (r1.5.8.1 -> r1.5.8.2)
        (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/test/regress/sql/interval.sql?r1=1.5.8.1&r2=1.5.8.2)