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
Copy file name to clipboardExpand all lines: docs/releases/0.10.md
+38Lines changed: 38 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,6 +10,7 @@ Big shout out to all contributors and a heartfelt welcome to our new contributor
10
10
11
11
*@nogitting made their first contribution in https://github.com/Nike-Inc/koheesio/pull/154
12
12
*@zarembat made their first contribution in https://github.com/Nike-Inc/koheesio/pull/163
13
+
*@brunodd made their first contribution in https://github.com/Nike-Inc/koheesio/pull/180
13
14
14
15
## Migrating from v0.9
15
16
@@ -23,6 +24,43 @@ For users currently using v0.9, consider the following:
23
24
24
25
*`JDBCReader`, `HanaReader`, and `TeradataReader` classes have been updated to use `params` over `options` for improved consistency and maintainability. The `options` field has been renamed to `params`, and an alias `options` has been added for backwards compatibility. These changes provide a more consistent API across different reader classes and improve code readability. Note that `dbtable` and `query` validation now occurs upon *initialization* rather than at *runtime*, requiring either `dbtable` or `query` to be submitted to use JDBC based classes.
#### *Delta > Writer*: Fixed checking merge builder type in DeltaTableWriter when using connect
47
+
48
+
* The `merge_builder` parameter in `DeltaTableWriter` was not properly validating the type of the merge builder when using Spark Connect.
49
+
* The validation logic was expecting a `list` or a `delta.tables.DeltaMergeBuilder` instance, but it failed to recognize the `delta.connect.tables.DeltaMergeBuilder` instance.
50
+
* 4 dedicated test cases have been added to test the merge builder
0 commit comments