From d21408ed1a37fed7382d7846d44eba42cb63b305 Mon Sep 17 00:00:00 2001 From: Jonathan M Hsieh Date: Thu, 25 Dec 2025 09:24:11 -0800 Subject: [PATCH] docs: remove incorrect "LanceDb Cloud only" from table_names params 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 -------