From 1a747260f686ddba796e9c4528863fbf61b8e721 Mon Sep 17 00:00:00 2001 From: Ryan Green Date: Wed, 24 Jun 2026 16:20:37 -0230 Subject: [PATCH] add missing field --- python/python/lancedb/table.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/python/python/lancedb/table.py b/python/python/lancedb/table.py index b29d9dbd5..25df6b554 100644 --- a/python/python/lancedb/table.py +++ b/python/python/lancedb/table.py @@ -3357,6 +3357,7 @@ class LanceTable(Table): location: Optional[str] = None, namespace_client: Optional[Any] = None, pushdown_operations: Optional[set] = None, + route_pushdown_to_rust: bool = False, ): """ Create a new table. @@ -3419,6 +3420,7 @@ class LanceTable(Table): self._location = location self._namespace_client = namespace_client self._pushdown_operations = pushdown_operations or set() + self._route_pushdown_to_rust = route_pushdown_to_rust if data_storage_version is not None: warnings.warn(