birschick-bq commented on code in PR #2376: URL: https://github.com/apache/arrow-adbc/pull/2376#discussion_r1894249241
########## csharp/src/Drivers/Apache/Spark/README.md: ########## @@ -41,6 +41,11 @@ but can also be passed in the call to `AdbcDatabase.Connect`. | `adbc.apache.statement.batch_size` | Sets the maximum number of rows to retrieve in a single batch request. | `50000` | | `adbc.apache.statement.polltime_ms` | If polling is necessary to get a result, this option sets the length of time (in milliseconds) to wait between polls. | `500` | | `adbc.apache.statement.query_timeout_s` | Sets the maximum time (in seconds) for a query to complete. Values can be 0 (infinite) or greater than zero. | `60` | +| `ssl` | If ssl needs to enabled or not | `false` | +| `allow_self_signed` | If self signed ssl certificate needs to be allowed or not | `false` | +| `allow_hostname_mismatch` | If hostname mismatch is allowed for ssl | `false` | +| `trusted_certificate_path` | The full path of the ssl certificate file containing custom CA certificates for verifying the server when connecting over TLS | `` | Review Comment: We need to continue to use namespace/canonical name convention. ```suggestion | `adbc.apache.trusted_certificate_path` | The full path of the tls/ssl certificate file containing custom CA certificates for verifying the server when connecting over TLS | | ``` -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
