The docs show [SET DATA] TYPE which implies the SET DATA part is optional, but the 9.1 release notes also imply that SET DATA TYPE may be different:
Allow
ALTER TABLE ... SET DATA TYPEto avoid table rewrites in appropriate cases
I'm trying to update a column on a billion-row table from int to bigint and I'm at the four-hour mark. I'm curious if I should cancel the transaction and restart it using the SET DATA TYPE form instead of the plain TYPE form that I used.
Does SET DATA TYPE do something different (and hopefully faster)?