Re: ALTER TABLE fails when changing column type due to index with bit_ops opclass - Mailing list pgsql-bugs

From Tom Lane
Subject Re: ALTER TABLE fails when changing column type due to index with bit_ops opclass
Date
Msg-id 17980.1574273782@sss.pgh.pa.us
Whole thread Raw
In response to ALTER TABLE fails when changing column type due to index with bit_ops opclass  (Manuel Rigger <rigger.manuel@gmail.com>)
Responses Re: ALTER TABLE fails when changing column type due to index withbit_ops opclass  (Manuel Rigger <rigger.manuel@gmail.com>)
List pgsql-bugs
Manuel Rigger <rigger.manuel@gmail.com> writes:
> Consider the following statements:

> CREATE TABLE t0(c0 BIT VARYING(1));
> CREATE INDEX i0 ON t0(c0 bit_ops);
> ALTER TABLE t0 ALTER c0 TYPE TEXT; -- ERROR:  operator class "bit_ops"
> does not accept data type text

> Altering the column type fails, which is somewhat unexpected, since it
> does not seem to cause problems for other opclasses. For example, the
> following executes without errors:

> CREATE TABLE t0(c0 TEXT);
> CREATE INDEX i0 ON t0(c0 text_ops);
> ALTER TABLE  t0 ALTER c0 TYPE BIT VARYING(1) USING c0::bit varying(1);

> Is this a bug or expected?

I think this is expected behavior, more or less.  The critical difference
is that you specified a non-default opclass in the first example (the
default choice for that column datatype is varbit_ops not bit_ops).
ALTER TABLE figures that it's okay to replace the default opclass for
the original type with the default opclass for the new type, but it's
not willing to guess about what you want if the index has a non-default
opclass.  So the conversion only goes through if the specified opclass
also accepts the new datatype, which typically it wouldn't.

This is probably not documented anyplace.  Should it be?  If so, what
should we say and where?

            regards, tom lane



pgsql-bugs by date:

Previous
From: Tomas Vondra
Date:
Subject: Re: BUG #16127: PostgreSQL 12.1 on Windows 2008 R2copy table from ‘large 2GB csv’report “Unknown error”
Next
From: PG Bug reporting form
Date:
Subject: BUG #16129: Segfault in tts_virtual_materialize in logical replication worker