Re: ALTER TABLE behind-the-scenes effects' CONTEXT

From: Pavel Stehule <pavel(dot)stehule(at)gmail(dot)com>
To: Marko Tiikkaja <marko(at)joh(dot)to>
Cc: PostgreSQL Hackers <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: ALTER TABLE behind-the-scenes effects' CONTEXT
Date: 2015-10-05 03:47:49
Message-ID: CAFj8pRDnaZWnHMc5bypaycXGvvHD_fa0p27Kb_uBb7HS1ns+4A@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

2015-10-05 0:08 GMT+02:00 Marko Tiikkaja <marko(at)joh(dot)to>:

> Hi,
>
> In the past I've found the error message in cases such as this somewhat
> less helpful than it could be:
>
> =# CREATE TABLE qqq (a int);
> =# CREATE UNIQUE INDEX IF NOT EXISTS qqq_a_idx ON qqq(a);
> =# ALTER TABLE qqq ALTER COLUMN a TYPE json USING NULL;
> ERROR: data type json has no default operator class for access method
> "btree"
> HINT: You must specify an operator class for the index or define a
> default operator class for the data type.
>
> The attached patch adds a CONTEXT line to index and constraint rebuilds,
> e.g:
>
> CONTEXT: while rebuilding index qqq_a_idx
>
> Any feedback welcome.
>

I prefer using DETAIL field for this case.

Regards

Pavel

>
> .m
>
>
> --
> Sent via pgsql-hackers mailing list (pgsql-hackers(at)postgresql(dot)org)
> To make changes to your subscription:
> http://www.postgresql.org/mailpref/pgsql-hackers
>
>

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Michael Paquier 2015-10-05 04:56:10 Re: [PATCH] postgres_fdw extension support
Previous Message Amit Kapila 2015-10-05 03:27:00 Re: Speed up Clog Access by increasing CLOG buffers