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

From: Bruce Momjian <bruce(at)momjian(dot)us>
To: lr(at)pcorp(dot)us
Cc: pgsql-bugs(at)postgresql(dot)org
Subject: Re: BUG #9046: vacuum analyze fails on a table that has domain that is a date rage
Date: 2014-04-16 23:05:26
Message-ID: 20140416230526.GM7443@momjian.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs

On Fri, Jan 31, 2014 at 12:31:59AM +0000, lr(at)pcorp(dot)us wrote:
> The following bug has been logged on the website:
>
> Bug reference: 9046
> Logged by: Regina Obe
> Email address: lr(at)pcorp(dot)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

I am not able to reproduce this failure in 9.3.4. I suggest you upgrade.

--
Bruce Momjian <bruce(at)momjian(dot)us> http://momjian.us
EnterpriseDB http://enterprisedb.com

+ Everyone has their own god. +

In response to

Browse pgsql-bugs by date

  From Date Subject
Next Message Bruce Momjian 2014-04-17 00:02:06 Re: BUG #9136: pg_is_xlog_replay_paused() should not need Superuser
Previous Message Bruce Momjian 2014-04-16 18:28:51 Re: BUG #10052: COPY (...) TO 'file' doesn't create file