v0.5.0
What's Changed
- fix: Numbers to floats by @pnadolny13 in #106
- fix: Numbers to floats by @pnadolny13 in #106 choses to use floats to handle numeric values in a safer way. As part of that switch an existing sync that is writing to number columns might try to alter them to float types which would fail with a snowflake error like
..cannot change column NUM_COL from type NUMBER(38,0) to FLOAT..
. In this case you should either do one of the following manually steps to alter these types:
- If the data isnt large you can reload it into the new schema.
- Alter/Update Column
- alter existing number column
- create new column with type float
- update new column and set as value of altered column
- Create new table as select and cast the number columns to floats
Full Changelog: v0.4.3...v0.5.0