Thanks for the work on this project! We're just trying out Singer for moving data from MySQL to Redshift. In MySQL we have a column type of bigint(18) unsigned. Some values in this column don't fit it Redshift's bigint column type and we get errors like Overflow (Long valid range -9223372036854775808 to 9223372036854775807)
Typically we declare a Redshift column as NUMERIC(20, 0) to hold these values. Is there a way to tell target-redshift to use that type for a particular Redshift column?
Thanks for the work on this project! We're just trying out Singer for moving data from MySQL to Redshift. In MySQL we have a column type of
bigint(18) unsigned. Some values in this column don't fit it Redshift'sbigintcolumn type and we get errors likeOverflow (Long valid range -9223372036854775808 to 9223372036854775807)Typically we declare a Redshift column as
NUMERIC(20, 0)to hold these values. Is there a way to telltarget-redshiftto use that type for a particular Redshift column?