This is an automated email from the ASF dual-hosted git repository. lzljs3620320 pushed a commit to branch release-1.0 in repository https://gitbox.apache.org/repos/asf/paimon.git
commit 82396bf11a1facaf0ee6e676c6ee971b3e3f594d Author: HunterXHunter <[email protected]> AuthorDate: Wed Jan 22 14:12:38 2025 +0800 [doc] Pypaimon api table_scan plan splits. (#4978) --- docs/content/program-api/python-api.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/program-api/python-api.md b/docs/content/program-api/python-api.md index 079170760b..0c2813d529 100644 --- a/docs/content/program-api/python-api.md +++ b/docs/content/program-api/python-api.md @@ -266,7 +266,7 @@ Then you can step into Scan Plan stage to get `splits`: ```python table_scan = read_builder.new_scan() -splits = table_scan.splits() +splits = table_scan.plan().splits() ``` ### Read Splits
