We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 608d237 commit 85af9c0Copy full SHA for 85af9c0
src/databricks/sql/client.py
@@ -52,6 +52,13 @@
52
53
logger = logging.getLogger(__name__)
54
55
+if pyarrow is None:
56
+ logger.warning(
57
+ "[WARN] pyarrow is not installed by default since databricks-sql-connector 4.0.0,"
58
+ "any arrow specific api (e.g. fetchmany_arrow) and cloud fetch will be disabled."
59
+ "If you need these features, please run pip install pyarrow or pip install databricks-sql-connector[pyarrow] to install"
60
+ )
61
+
62
DEFAULT_RESULT_BUFFER_SIZE_BYTES = 104857600
63
DEFAULT_ARRAY_SIZE = 100000
64
0 commit comments