This is an automated email from the ASF dual-hosted git repository.
curth pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-adbc.git
The following commit(s) were added to refs/heads/main by this push:
new 6925a9933 fix(csharp/test/Drivers/Databricks): Disable
UseDescTableExtended by default (#3544)
6925a9933 is described below
commit 6925a9933a964e5d5e1f54c55a676f8604b2b8db
Author: Jacky Hu <[email protected]>
AuthorDate: Tue Oct 7 15:27:56 2025 -0700
fix(csharp/test/Drivers/Databricks): Disable UseDescTableExtended by
default (#3544)
## Motivation
Disable `UseDescTableExtended` (use `DESC TABLE AS JOIN` to get
metadata) by default in the Databricks Driver, so it will not call `DESC
TABLE AS JSON` to get the meta data in Power BI by default. But customer
can turn it on by setting `UseDescTableExtended=1` as the connection
property in Power BI or setting
`adbc.databricks.use_desc_table_extended=true` as ADBC connection
properties.
## Change
- Set `DatabricksConnection:_useDescTableExtended` default value as
`false`
## Test
- Unit test and E2E test
---
csharp/src/Drivers/Databricks/DatabricksConnection.cs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/csharp/src/Drivers/Databricks/DatabricksConnection.cs
b/csharp/src/Drivers/Databricks/DatabricksConnection.cs
index e06a6eb95..eaed71e99 100644
--- a/csharp/src/Drivers/Databricks/DatabricksConnection.cs
+++ b/csharp/src/Drivers/Databricks/DatabricksConnection.cs
@@ -74,7 +74,7 @@ namespace Apache.Arrow.Adbc.Drivers.Databricks
private long _maxBytesPerFetchRequest = DefaultMaxBytesPerFetchRequest;
private const bool DefaultRetryOnUnavailable = true;
private const int DefaultTemporarilyUnavailableRetryTimeout = 900;
- private bool _useDescTableExtended = true;
+ private bool _useDescTableExtended = false;
// Trace propagation configuration
private bool _tracePropagationEnabled = true;