zeroshade commented on code in PR #4121: URL: https://github.com/apache/arrow-adbc/pull/4121#discussion_r2961450723
########## docs/source/format/connection_profiles.rst: ########## @@ -561,34 +576,28 @@ Sets a custom connection profile provider. Must be called before ``AdbcDatabaseI Setting Additional Search Paths -------------------------------- -.. code-block:: c - - AdbcStatusCode AdbcDriverManagerDatabaseSetAdditionalSearchPathList( - struct AdbcDatabase* database, - const char* path_list, - struct AdbcError* error); - -Adds additional directories to search for profiles. Must be called before ``AdbcDatabaseInit()``. - -**Parameters:** - -- ``database``: Database object to configure -- ``path_list``: OS-specific path separator delimited list (``:``) on Unix, ``;`` on Windows), or ``NULL`` to clear -- ``error``: Optional error output - -**Returns:** ``ADBC_STATUS_OK`` on success, error code otherwise. +This can be done via the ``additional_profile_search_path_list`` option. It +must be set before ``AdbcDatabaseInit()``. The value of this option is an +OS-specific delimited list (``:`` on Unix, ``;`` on Windows), or ``NULL`` to +clear. Review Comment: it doesn't look like this is being added to the rust driver manager code to check for this option, shouldn't we add that? Or am I missing it? -- 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]
