I'm adding one column in table and after that I'm dropping it too. I found that dropping the column will just hide but not remove it.
Because I repeatedly add and remove columns, I soon get this error:
ERROR: tables can have at most 1600 columns
I know that one solution is to drop the table and recreate it, but it will incur overhead, so it's not suitable for my situation.
How else can I avoid this error?