From 918c4d52d7a9c5b7416a9809f0119369f09d448e Mon Sep 17 00:00:00 2001 From: Marcin Rudolf Date: Mon, 16 Oct 2023 20:04:08 +0200 Subject: [PATCH] adds docsting on table format to decorators --- dlt/extract/decorators.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dlt/extract/decorators.py b/dlt/extract/decorators.py index b036bdc4a6..2125d0855e 100644 --- a/dlt/extract/decorators.py +++ b/dlt/extract/decorators.py @@ -317,6 +317,8 @@ def resource( merge_key (str | Sequence[str]): A column name or a list of column names that define a merge key. Typically used with "merge" write disposition to remove overlapping data ranges ie. to keep a single record for a given day. This argument also accepts a callable that is used to dynamically create tables for stream-like resources yielding many datatypes. + table_format (Literal["iceberg"], optional): Defines the storage format of the table. Currently only "iceberg" is supported on Athena, other destinations ignore this hint. + selected (bool, optional): When `True` `dlt pipeline` will extract and load this resource, if `False`, the resource will be ignored. spec (Type[BaseConfiguration], optional): A specification of configuration and secret values required by the source.