BUG #9046: vacuum analyze fails on a table that has domain that is a date rage

Поиск
Список
Период
Сортировка
От lr@pcorp.us
Тема BUG #9046: vacuum analyze fails on a table that has domain that is a date rage
Дата
Msg-id 20140131003159.13610.84214@wrigleys.postgresql.org
обсуждение исходный текст
Ответы Re: BUG #9046: vacuum analyze fails on a table that has domain that is a date rage  (Tom Lane <tgl@sss.pgh.pa.us>)
Re: BUG #9046: vacuum analyze fails on a table that has domain that is a date rage  (Bruce Momjian <bruce@momjian.us>)
Список pgsql-bugs
The following bug has been logged on the website:

Bug reference:      9046
Logged by:          Regina Obe
Email address:      lr@pcorp.us
PostgreSQL version: 9.3.2
Operating system:   Windows 2003 x 64  PostgreSQL x 64
Description:

Here are steps to recreate:

CREATE DOMAIN domain_period
  AS daterange
  DEFAULT daterange('-infinity'::date, 'infinity'::date, '[)'::text)
  NOT NULL
  CONSTRAINT domain_period_check_1 CHECK (lower(VALUE) < upper(VALUE))
  CONSTRAINT domain_period_check_2 CHECK (NOT isempty(VALUE))
  CONSTRAINT domain_period_check_3 CHECK (lower_inc(VALUE))
  CONSTRAINT domain_period_check_4 CHECK (NOT upper_inc(VALUE));

CREATE TABLE test_domain_period(id serial, period domain_period);

vacuum analyze test_domain_period;


Get error:
ERROR:  type 920283 is not a range type

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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: BUG #9041: Strange error message with LATERAL and mixed WHERE/ON conditions
Следующее
От: Tom Lane
Дата:
Сообщение: Re: BUG #9046: vacuum analyze fails on a table that has domain that is a date rage