Skip to content

Commit 0677211

Browse files
authored
bug: NoopCatalog should return False, not throw error (#3284)
1 parent cdb625f commit 0677211

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pyiceberg/catalog/noop.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def drop_table(self, identifier: str | Identifier) -> None:
8989
raise NotImplementedError
9090

9191
def supports_server_side_planning(self) -> bool:
92-
raise NotImplementedError
92+
return False
9393

9494
def purge_table(self, identifier: str | Identifier) -> None:
9595
raise NotImplementedError

0 commit comments

Comments
 (0)