From 14340b26ff349c5c167d3962c3612ef96af29e37 Mon Sep 17 00:00:00 2001 From: Alex Stephen Date: Fri, 24 Apr 2026 15:18:58 -0700 Subject: [PATCH] NoopCatalog should return False, not throw error --- pyiceberg/catalog/noop.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyiceberg/catalog/noop.py b/pyiceberg/catalog/noop.py index c5399ad62e..47a7d89740 100644 --- a/pyiceberg/catalog/noop.py +++ b/pyiceberg/catalog/noop.py @@ -89,7 +89,7 @@ def drop_table(self, identifier: str | Identifier) -> None: raise NotImplementedError def supports_server_side_planning(self) -> bool: - raise NotImplementedError + return False def purge_table(self, identifier: str | Identifier) -> None: raise NotImplementedError