File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ def read_iceberg(
35
35
A tuple of strings representing the column names to return in the output
36
36
dataframe.
37
37
case_sensitive : bool, default True
38
- If True column matching is case sensitive,
38
+ If True column matching is case sensitive.
39
39
snapshot_id : int, optional
40
40
Snapshot ID to time travel to. By default the table will be scanned as of the
41
41
current snapshot ID.
@@ -58,9 +58,9 @@ def read_iceberg(
58
58
Examples
59
59
--------
60
60
>>> df = pd.read_iceberg(
61
+ ... table_identifier="my_table",
61
62
... catalog_name="my_catalog",
62
- ... catalog_options={"s3.secret-access-key": "my-secret"},
63
- ... table_name="my_table",
63
+ ... catalog_properties={"s3.secret-access-key": "my-secret"},
64
64
... row_filter="trip_distance >= 10.0",
65
65
... selected_fields=("VendorID", "tpep_pickup_datetime"),
66
66
... )
You can’t perform that action at this time.
0 commit comments