We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 608d237 commit 9c926bfCopy full SHA for 9c926bf
src/databricks/sql/client.py
@@ -52,6 +52,12 @@
52
53
logger = logging.getLogger(__name__)
54
55
+if pyarrow is None:
56
+ logger.warning(
57
+ "[WARN] pyarrow is not installed, any arrow specific api (e.g. fetchmany_arrow) and cloud fetch will be disabled."
58
+ "If you need these features, please run pip install pyarrow to install"
59
+ )
60
+
61
DEFAULT_RESULT_BUFFER_SIZE_BYTES = 104857600
62
DEFAULT_ARRAY_SIZE = 100000
63
0 commit comments