toddmeng-db commented on code in PR #2794:
URL: https://github.com/apache/arrow-adbc/pull/2794#discussion_r2093721843


##########
csharp/src/Drivers/Apache/Hive2/README.md:
##########
@@ -53,6 +53,13 @@ but can also be passed in the call to `AdbcDatabase.Connect`.
 | `adbc.http_options.tls.allow_self_signed` | If self signed tls/ssl 
certificate needs to be allowed or not. One of `True`, `False` | `False` |
 | `adbc.http_options.tls.allow_hostname_mismatch` | If hostname mismatch is 
allowed for ssl. One of `True`, `False` | `False` |
 | `adbc.http_options.tls.trusted_certificate_path` | The full path of the 
tls/ssl certificate .pem file containing custom CA certificates for verifying 
the server when connecting over TLS | `` |
+| `adbc.proxy_options.use_proxy` | Whether to use a proxy for HTTP 
connections. Only feature-complete in Spark driver. One of `True`, `False` | 
`False` |
+| `adbc.proxy_options.proxy_host` | Hostname or IP address of the proxy 
server. Only feature-complete in Spark driver. Required when use_proxy is True 
| |
+| `adbc.proxy_options.proxy_port` | Port number of the proxy server. Only 
feature-complete in Spark driver. Required when use_proxy is True | |
+| `adbc.proxy_options.proxy_ignore_list` | Comma-separated list of hosts or 
domains that should bypass the proxy. Only feature-complete in Spark driver. 
For example: "localhost,127.0.0.1,.internal.domain.com". Supports wildcard 
patterns like "*.internal.domain.com" | |
+| `adbc.proxy_options.proxy_auth` | Whether to enable proxy authentication. 
Only feature-complete in Spark driver. One of `True`, `False` | `False` |
+| `adbc.proxy_options.proxy_uid` | Username for proxy authentication. Only 
feature-complete in Spark driver. Required when proxy_auth is True | |
+| `adbc.proxy_options.proxy_pwd` | Password for proxy authentication. Only 
feature-complete in Spark driver. Required when proxy_auth is True | |
 

Review Comment:
   I think this will work out of the box for impala - but since I have not 
tested it, hence "Only feature-complete in Spark driver"



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscr...@arrow.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to