I think I read somewhere that running an ALTER TABLE foo ADD COLUMN baz text
on a postgres database will not cause a read or write lock. Setting a default value causes locking, but allowing a null default prevents a lock.
I can't find this in the documentation, though. Can anyone point to a place that says, definitively, if this is true or not?
Adding a column to a table will no longer require table locks except possibly brief exclusive locks at the start and end of the operation.
We can lock the table by using access share, row share, row exclusive, share, share update exclusive, exclusive, share row exclusive, and access exclusive mode in PostgreSQL. Using the lock command we need to specify the table name and the name of the mode which was we have applied on the table.
Answer: No, Each null value only uses one bit on disk.
The different sorts of locks and when they're used are mentioned in the doc in
Table-level Locks. For instance, Postgres 11's ALTER TABLE
may acquire a SHARE UPDATE EXCLUSIVE
, SHARE ROW EXCLUSIVE
, or ACCESS EXCLUSIVE
lock.
Postgres 9.1 through 9.3 claimed to support two of the above three but actually forced Access Exclusive
for all variants of this command. This limitation was lifted in Postgres 9.4 but ADD COLUMN
remains at ACCESS EXCLUSIVE
by design.
It's easy to check in the source code because there's a function dedicated to establishing the lock level needed for this command in various cases: AlterTableGetLockLevel
in src/backend/commands/tablecmds.c
.
Concerning how much time the lock is held, once acquired:
Adding new null column will lock the table for very very short time since no need to rewrite all data on disk. While adding column with default value requires PostgreSQL to make new versions of all rows and store them on the disk. And during that time table will be locked.
So when you need to add column with default value to big table it's recommended to add null value first and then update all rows in small portions. This way you'll avoid high load on disk and allow autovacuum to do it's job so you'll not end up doubling table size.
http://www.postgresql.org/docs/current/static/sql-altertable.html#AEN57290
"Adding a column with a non-null default or changing the type of an existing column will require the entire table and indexes to be rewritten."
So the documentation only specifies when the table is not rewritten. There will always be a lock, but it will be very short in case the table is not to be rewritten.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With