Change column type from int to bigint - quickest way - Mailing list pgsql-general

From Andreas Brandl
Subject Change column type from int to bigint - quickest way
Date
Msg-id 754618294.6548.1478878448800.JavaMail.zimbra@andreas-brandl.de
Whole thread Raw
Responses Re: Change column type from int to bigint - quickest way  (Tom Lane <tgl@sss.pgh.pa.us>)
Re: Change column type from int to bigint - quickest way  (Merlin Moncure <mmoncure@gmail.com>)
List pgsql-general
Hi,

we have a pretty big table with an integer-type primary key. I'm looking for the quickest way to change the column type
tobigint to avoid hitting the integer limit. We're trying to avoid prolonged lock situations and full table rewrites. 

I know I can hack this with an UPDATE on pg_attribute:

-- change id type to bigint
update pg_attribute set atttypid=20 where attrelid=264782 and attname = 'id';

After that I'd need to reflect the change on dependent objects like views as well.

Is this safe to do? Are there any unwanted consequences to this?

This is still on 9.1 unfortunately - upgrade is going to follow soon after this.

Thanks!
Andreas


pgsql-general by date:

Previous
From: Adrian Klaver
Date:
Subject: Re: row => text => row
Next
From: Tom Lane
Date:
Subject: Re: Change column type from int to bigint - quickest way