Re: Cases where alter table set type varchar(longer length) stillneeds table rewrite
От | Adrian Klaver |
---|---|
Тема | Re: Cases where alter table set type varchar(longer length) stillneeds table rewrite |
Дата | |
Msg-id | 45da6f97-119a-fc3f-9393-4d056bddb3f5@aklaver.com обсуждение исходный текст |
Ответ на | Re: Cases where alter table set type varchar(longer length) stillneeds table rewrite (Jeremy Finzel <finzelj@gmail.com>) |
Ответы |
Re: Cases where alter table set type varchar(longer length) still needs table rewrite
Re: Cases where alter table set type varchar(longer length) stillneeds table rewrite |
Список | pgsql-general |
On 2/17/20 7:01 AM, Jeremy Finzel wrote: > On Mon, Feb 17, 2020 at 8:21 AM Tom Lane <tgl@sss.pgh.pa.us > <mailto:tgl@sss.pgh.pa.us>> wrote: > > Jeremy Finzel <finzelj@gmail.com <mailto:finzelj@gmail.com>> writes: > > I have a table foo with 100 million rows, and a column: > > - id character varying(20) > > The following command is the one that we expect to execute very > quickly (we > > are not seeing any locking), but it is instead taking a very long > time: > > - ALTER TABLE foo ALTER COLUMN id TYPE varchar(100); > > Hm, the code is supposed to avoid a table rewrite, but I wonder if > there's something else that's not being avoided, such as an index > rebuild or foreign-key verification. Could we see the whole table > definition, eg from psql \d+ ? > > regards, tom lane > > > Based on your feedback, I quickly identified that indeed, the following > index is causing the re-type to be slow: > > "id_idx" btree ("substring"(id::text, 4, 7)) > > I'm still not sure why a rebuild of this index would be required, > technically speaking. But perhaps in any case the docs should have > something to the effect that expression indexes may require rebuild > under specific circumstances? How about?: https://www.postgresql.org/docs/9.6/sql-altertable.html "Adding a column with a DEFAULT clause or changing the type of an existing column will require the entire table and its indexes to be rewritten. As an exception when changing the type of an existing column, if the USING clause does not change the column contents and the old type is either binary coercible to the new type or an unconstrained domain over the new type, a table rewrite is not needed; but any indexes on the affected columns must still be rebuilt. Adding or removing a system oid column also requires rewriting the entire table. Table and/or index rebuilds may take a significant amount of time for a large table; and will temporarily require as much as double the disk space." > > Thanks! > Jeremy -- Adrian Klaver adrian.klaver@aklaver.com
В списке pgsql-general по дате отправления: