zeroshade commented on code in PR #3320: URL: https://github.com/apache/arrow-adbc/pull/3320#discussion_r2294308460
########## c/driver_manager/CMakeLists.txt: ########## Review Comment: updated the R `Makevars` and `Makevars.win` to check for `CONDA_BUILD` appropriately ########## c/driver_manager/adbc_driver_manager.cc: ########## @@ -1362,6 +1414,22 @@ AdbcStatusCode AdbcDriverManagerDatabaseSetLoadFlags(struct AdbcDatabase* databa return ADBC_STATUS_OK; } +AdbcStatusCode AdbcDriverManagerDatabaseSetAdditionalSearchPathList( + struct AdbcDatabase* database, const char* path_list, struct AdbcError* error) { + if (database->private_driver) { + SetError(error, "Cannot SetAdditionalSearchPathList after AdbcDatabaseInit"); + return ADBC_STATUS_INVALID_STATE; + } + + TempDatabase* args = reinterpret_cast<TempDatabase*>(database->private_data); + if (path_list) { + args->additional_search_path_list = path_list; Review Comment: good point, fixed -- 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