Only VARCHAR type precision can be altered as per Redshift documentation: https://docs.aws.amazon.com/redshift/latest/dg/r_ALTER_TABLE.html. However SQLMesh attempts to also alter a column of DECIMAL type: ``` ALTER TABLE <target_table> ALTER COLUMN "quantity_amt" TYPE DECIMAL(25, 10) ``` We need to make sure that SQLMesh only alters columns of VARCHAR type when used with Redshift.
Only VARCHAR type precision can be altered as per Redshift documentation: https://docs.aws.amazon.com/redshift/latest/dg/r_ALTER_TABLE.html. However SQLMesh attempts to also alter a column of DECIMAL type:
We need to make sure that SQLMesh only alters columns of VARCHAR type when used with Redshift.