Skip to content

Commit

Permalink
Move AdbcDriverFactory to driver manager module
Browse files Browse the repository at this point in the history
  • Loading branch information
jduo committed Jan 26, 2024
1 parent 2be939d commit 32223fa
Show file tree
Hide file tree
Showing 8 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,9 @@
* limitations under the License.
*/

package org.apache.arrow.adbc.core;
package org.apache.arrow.adbc.drivermanager;

import org.apache.arrow.adbc.core.AdbcDriver;
import org.apache.arrow.memory.BufferAllocator;

/** A factory for instantiating new AdbcDrivers. */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
import java.util.function.Function;
import org.apache.arrow.adbc.core.AdbcDatabase;
import org.apache.arrow.adbc.core.AdbcDriver;
import org.apache.arrow.adbc.core.AdbcDriverFactory;
import org.apache.arrow.adbc.core.AdbcException;
import org.apache.arrow.adbc.core.AdbcStatusCode;
import org.apache.arrow.memory.BufferAllocator;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
package org.apache.arrow.adbc.test;

import org.apache.arrow.adbc.core.AdbcDriver;
import org.apache.arrow.adbc.core.AdbcDriverFactory;
import org.apache.arrow.adbc.drivermanager.AdbcDriverFactory;
import org.apache.arrow.memory.BufferAllocator;

/** Dummy AdbcDriverFactory used for testing. */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
package org.apache.arrow.adbc.driver.flightsql;

import org.apache.arrow.adbc.core.AdbcDriver;
import org.apache.arrow.adbc.core.AdbcDriverFactory;
import org.apache.arrow.adbc.drivermanager.AdbcDriverFactory;
import org.apache.arrow.memory.BufferAllocator;

/** Constructs new FlightSqlDriver instances. */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
package org.apache.arrow.adbc.driver.jdbc;

import org.apache.arrow.adbc.core.AdbcDriver;
import org.apache.arrow.adbc.core.AdbcDriverFactory;
import org.apache.arrow.adbc.drivermanager.AdbcDriverFactory;
import org.apache.arrow.memory.BufferAllocator;

/** Constructs new JdbcDriver instances. */
Expand Down

0 comments on commit 32223fa

Please sign in to comment.