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(
3535 A tuple of strings representing the column names to return in the output
3636 dataframe.
3737 case_sensitive : bool, default True
38- If True column matching is case sensitive,
38+ If True column matching is case sensitive.
3939 snapshot_id : int, optional
4040 Snapshot ID to time travel to. By default the table will be scanned as of the
4141 current snapshot ID.
@@ -58,9 +58,9 @@ def read_iceberg(
5858 Examples
5959 --------
6060 >>> df = pd.read_iceberg(
61+ ... table_identifier="my_table",
6162 ... 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"},
6464 ... row_filter="trip_distance >= 10.0",
6565 ... selected_fields=("VendorID", "tpep_pickup_datetime"),
6666 ... )
You can’t perform that action at this time.
0 commit comments