From 1cf7b4b6786fc7de5388d394f84c15941e96b412 Mon Sep 17 00:00:00 2001 From: Jonathan Hsieh Date: Mon, 29 Dec 2025 09:08:04 -0800 Subject: [PATCH] docs: remove incorrect "LanceDb Cloud only" from table_names params (#2893) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The page_token and limit parameters for table_names() are supported by both local storage and LanceDB Cloud, not just Cloud as the docstring incorrectly stated. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude Opus 4.5 --- python/python/lancedb/db.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/python/python/lancedb/db.py b/python/python/lancedb/db.py index 4b41f023..be2fbdfc 100644 --- a/python/python/lancedb/db.py +++ b/python/python/lancedb/db.py @@ -210,10 +210,8 @@ class DBConnection(EnforceOverrides): page_token: str, optional The token to use for pagination. If not present, start from the beginning. Typically, this token is last table name from the previous page. - Only supported by LanceDb Cloud. limit: int, default 10 The size of the page to return. - Only supported by LanceDb Cloud. Returns -------