Some databases do not automatically convert from string to the type of the other side in a comparison: 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_placeholderargument which should actually be named comparison_placeholderand now at least the docstring reads like that.
Some databases do not automatically convert from string to the type of the other side in a comparison: 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 toCopyIncrementally()
will allow to alter this totimestamp_column >= TIMESTAMP '2020-01-01'
.Also fixup the docstring for
comparison_value_placeholder
argument which should actually be namedcomparison_placeholder
and now at least the docstring reads like that.