Skip to content

v0.5.0

Compare
Choose a tag to compare
@pnadolny13 pnadolny13 released this 14 Aug 19:06
· 127 commits to main since this release
ae8f1aa

What's Changed

⚠️ Potential Breaking Change ⚠️ :

  • 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:
  1. If the data isnt large you can reload it into the new schema.
  2. Alter/Update Column
  • alter existing number column
  • create new column with type float
  • update new column and set as value of altered column
  1. Create new table as select and cast the number columns to floats

Full Changelog: v0.4.3...v0.5.0