Skip to content

Commit

Permalink
Added docstring and release note
Browse files Browse the repository at this point in the history
  • Loading branch information
mark-druffel committed Oct 25, 2024
1 parent de2ce87 commit 47331ff
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions kedro-datasets/RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
| `databricks.ExternalTableDataset` | A dataset for accessing external tables in Databricks. | `kedro_datasets_experimental.databricks` |

## Bug fixes and other changes
- Fixed ibis.TableDataset to support passing arguments to `create_table`, `create_view`, and `table` via a `table_args` parameter

## Breaking Changes

Expand Down
2 changes: 2 additions & 0 deletions kedro-datasets/kedro_datasets/ibis/table_dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,8 @@ def __init__( # noqa: PLR0913
table_name: The name of the table or view to read or create.
connection: Configuration for connecting to an Ibis backend.
If not provided, connect to DuckDB in in-memory mode.
table_args: Additional arguments passed to the Ibis backend's
`create_{materialized}` method and `table` method.
load_args: Additional arguments passed to the Ibis backend's
`read_{file_format}` method.
save_args: Additional arguments passed to the Ibis backend's
Expand Down

0 comments on commit 47331ff

Please sign in to comment.