Обсуждение: pgsql: SP-GiST support of the range adjacent operator -|-

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

pgsql: SP-GiST support of the range adjacent operator -|-

От
Heikki Linnakangas
Дата:
SP-GiST support of the range adjacent operator -|-

Alexander Korotkov, reviewed by Jeff Davis.

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/23f10b6473ed58c3699b81ca4677f4ff51878ec0

Modified Files
--------------
src/backend/utils/adt/rangetypes.c        |  119 +++++++++++++------------
src/backend/utils/adt/rangetypes_spgist.c |  137 +++++++++++++++++++++++++++++
src/include/catalog/pg_amop.h             |    1 +
src/include/utils/rangetypes.h            |    2 +
src/test/regress/expected/opr_sanity.out  |    3 +-
5 files changed, 204 insertions(+), 58 deletions(-)


Re: pgsql: SP-GiST support of the range adjacent operator -|-

От
Tom Lane
Дата:
Heikki Linnakangas <heikki.linnakangas@iki.fi> writes:
> Modified Files
> --------------
> src/backend/utils/adt/rangetypes.c        |  119 +++++++++++++------------
> src/backend/utils/adt/rangetypes_spgist.c |  137 +++++++++++++++++++++++++++++
> src/include/catalog/pg_amop.h             |    1 +
> src/include/utils/rangetypes.h            |    2 +
> src/test/regress/expected/opr_sanity.out  |    3 +-

Surely there should have been a catversion bump in that.  This fits
the standard trigger condition that "regression tests will fail unless
you run a new initdb".

            regards, tom lane


Re: pgsql: SP-GiST support of the range adjacent operator -|-

От
Heikki Linnakangas
Дата:
On 08.03.2013 16:49, Tom Lane wrote:
> Heikki Linnakangas<heikki.linnakangas@iki.fi>  writes:
>> Modified Files
>> --------------
>> src/backend/utils/adt/rangetypes.c        |  119 +++++++++++++------------
>> src/backend/utils/adt/rangetypes_spgist.c |  137 +++++++++++++++++++++++++++++
>> src/include/catalog/pg_amop.h             |    1 +
>> src/include/utils/rangetypes.h            |    2 +
>> src/test/regress/expected/opr_sanity.out  |    3 +-
>
> Surely there should have been a catversion bump in that.  This fits
> the standard trigger condition that "regression tests will fail unless
> you run a new initdb".

Indeed. Bumped the catversion now..

- Heikki