From b48a1f3c7ee4e41bc52305f435ba686ce6d75765 Mon Sep 17 00:00:00 2001 From: Brendan Clement Date: Mon, 8 Jun 2026 15:51:34 -0700 Subject: [PATCH] test: add current_branch to the namespace pushdown fake --- python/python/tests/test_namespace.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/python/python/tests/test_namespace.py b/python/python/tests/test_namespace.py index 8417e7384..f51690365 100644 --- a/python/python/tests/test_namespace.py +++ b/python/python/tests/test_namespace.py @@ -28,6 +28,10 @@ def _ipc_file(table: pa.Table = PUSHDOWN_DATA) -> bytes: class _FailingSyncInner: name = "hist" + def current_branch(self): + # The pushdown gate only routes server-side when on the default branch. + return None + async def schema(self): return PUSHDOWN_DATA.schema