Is it possible to use Postgres’s RENAME COLUMN with QueryDSL, with no app downtime?
We have a Java app using QueryDSL for managing SQL queries with Postgres. We want to simply rename a column in the most efficient way. In Postgres this is simple: ALTER TABLE my_table RENAME COLUMN old_name TO new_name; In order to have that work without application downtime, I was hoping to be able to do … Read more