From 3a6d9a0d6c443d1e2f80ff748f268cfdfde67a9f Mon Sep 17 00:00:00 2001 From: altescy Date: Tue, 26 Nov 2024 14:08:48 +0900 Subject: [PATCH] fix _enable_metadata condition --- queuery_client/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/queuery_client/client.py b/queuery_client/client.py index 09ee5af..508c2c7 100644 --- a/queuery_client/client.py +++ b/queuery_client/client.py @@ -46,7 +46,7 @@ def _auth(self) -> Optional[Tuple[str, str]]: @property def _enable_metadata(self) -> bool: - return self._enable_cast + return bool(self._enable_cast or self._use_manifest) def execute_query(self, select_stmt: str) -> Response: logger.info("Sending select statement to queuery...")