jduo commented on code in PR #1475:
URL: https://github.com/apache/arrow-adbc/pull/1475#discussion_r1462135615
##########
java/core/src/main/java/org/apache/arrow/adbc/core/AdbcDriver.java:
##########
@@ -60,7 +61,8 @@ public interface AdbcDriver {
/**
* Open a database via this driver.
*
+ * @param allocator The allocator to use to back the AdbcDatabase.
* @param parameters Driver-specific parameters.
*/
- AdbcDatabase open(Map<String, Object> parameters) throws AdbcException;
+ AdbcDatabase open(BufferAllocator allocator, Map<String, Object> parameters)
throws AdbcException;
Review Comment:
We could register an AdbcDriverFactory instead.
--
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]