You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add ability to specify modification value type in CopyIncrementally (#53)
Some databases do not automatically convert from string to the actual value: e.g. `timestamp_column >= '2020-01-01'` fails. This would break incremental loading as there we generated this kind of comparison. The new modification_comparison_type argument to `CopyIncrementally()` will allow to alter this to `timestamp_column >= TIMESTAMP '2020-01-01'`.
Also fixup the docstring for `comparison_value_placeholder`argument which should actually be named `comparison_placeholder`and now at least the docstring reads like that.
0 commit comments