Problem
Error running schema migration, err: cmd failed, cmd:
ALTER TABLE "schema"."table" ALTER COLUMN kill_id TYPE VARCHAR(MAX)
err: pq: ALTER TABLE ALTER COLUMN cannot run inside a transaction block
AWS Redshift does not support running the above ALTER COMMAND in an transaction block.
Does database/sql supports running sql commands without a transaction block?
How to run raw sql commands without a transaction block in Golang?