ywc88 opened a new pull request, #910: URL: https://github.com/apache/arrow-adbc/pull/910
Fixes #466 by having a single begin/commit txn for ingesting tables, instead of committing once per row. Before: ```r start_time <- Sys.time() adbc_statement_execute_query(stmt) end_time <- Sys.time() # [1] 336776 end_time - start_time # Time difference of 1.711345 mins ``` After: ```r > start_time <- Sys.time() adbc_statement_execute_query(stmt) end_time <- Sys.time() [1] 336776 > end_time - start_time Time difference of 0.2236128 secs ``` -- 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]
