PR #117 includes the following updates as a result of users encountering numeric counts exceeding the limit of a standard integer. Therefore, these fields were required to be cast as bigint in order to avoid "integer out of range" errors:
Breaking Changes
⚠️ Since the following changes result in a field changing datatype, we recommend running a
--full-refreshafter upgrading to this version to avoid possible incremental failures.
- The following fields in the
fivetran_platform__audit_tablemodel have been updated to be cast asdbt.type_bigint()(previously wasdbt.type_int())sum_rows_replaced_or_insertedsum_rows_updatedsum_rows_deleted
Bug Fixes
- The following fields in the
fivetran_platform__connector_daily_eventsmodel have been updated to be cast asdbt.type_bigint()(previously wasdbt.type_int())count_api_callscount_record_modificationscount_schema_changes
Under the Hood
- Modified
logseed data within the integration tests folder to ensure that large integers are being tested as part of our integration tests.
Full Changelog: v1.5.0...v1.6.0