BUG #4689: Expanding the length of a VARCHAR column should not induce a table rewrite - Mailing list pgsql-bugs

From
Subject BUG #4689: Expanding the length of a VARCHAR column should not induce a table rewrite
Date
Msg-id 200903040137.n241bAUV035002@wwwmaster.postgresql.org
Whole thread Raw
Responses Re: BUG #4689: Expanding the length of a VARCHAR column should not induce a table rewrite
List pgsql-bugs
The following bug has been logged online:

Bug reference:      4689
Logged by:
Email address:
xuan--2009.03--submitbug--support--postgresql.org@baldauf.org
PostgreSQL version: 8.3.5
Operating system:   Linux 2.6.18-6-amd64
Description:        Expanding the length of a VARCHAR column should not
induce a table rewrite
Details:

Suppose there is a table "sometable" with a column "somecolumn" of type
"VARCHAR(5)".

This table as many rows.

When executing
"ALTER TABLE sometable ALTER COLUMN somecolumn TYPE VARCHAR(7)", the whole
table is re-written, and this rewrite takes many hours. During these hours,
all writers on this table stall, making the database effectively
unavailable.

However, in almost all cases, there is no need for such relaxing of limits
to require a table rewrite.

So the expected run time needed for this statement is about one second, the
actual run time needed for this statement is many hours.

pgsql-bugs by date:

Previous
From: Tom Lane
Date:
Subject: Re: BUG #4688: Bug in cache.
Next
From: Heikki Linnakangas
Date:
Subject: Re: BUG #4689: Expanding the length of a VARCHAR column should not induce a table rewrite