This is an automated email from the ASF dual-hosted git repository.
ppa pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/ignite-3.git
The following commit(s) were added to refs/heads/main by this push:
new c5fd4b1a9a IGNITE-20937 Extract JDBC tests from runner module to
ignite-jdbc (#2922)
c5fd4b1a9a is described below
commit c5fd4b1a9a39f52cb4bed16385b685f537fd696a
Author: ygerzhedovich <[email protected]>
AuthorDate: Tue Dec 5 20:58:44 2023 +0200
IGNITE-20937 Extract JDBC tests from runner module to ignite-jdbc (#2922)
---
modules/jdbc/build.gradle | 1 +
.../java/org/apache/ignite/jdbc/ItJdbcAuthenticationTest.java} | 4 ++--
2 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/modules/jdbc/build.gradle b/modules/jdbc/build.gradle
index ee3fff55a6..87a39cd7cf 100644
--- a/modules/jdbc/build.gradle
+++ b/modules/jdbc/build.gradle
@@ -42,6 +42,7 @@ dependencies {
integrationTestImplementation testFixtures(project(":ignite-core"))
integrationTestImplementation testFixtures(project(":ignite-sql-engine"))
integrationTestImplementation testFixtures(project(':ignite-jdbc'))
+ integrationTestImplementation testFixtures(project(':ignite-runner'))
integrationTestImplementation project(":ignite-runner")
integrationTestImplementation project(":ignite-api")
diff --git
a/modules/runner/src/integrationTest/java/org/apache/ignite/internal/jdbc/ItJdbcTest.java
b/modules/jdbc/src/integrationTest/java/org/apache/ignite/jdbc/ItJdbcAuthenticationTest.java
similarity index 97%
rename from
modules/runner/src/integrationTest/java/org/apache/ignite/internal/jdbc/ItJdbcTest.java
rename to
modules/jdbc/src/integrationTest/java/org/apache/ignite/jdbc/ItJdbcAuthenticationTest.java
index e4118682a3..e264223ecd 100644
---
a/modules/runner/src/integrationTest/java/org/apache/ignite/internal/jdbc/ItJdbcTest.java
+++
b/modules/jdbc/src/integrationTest/java/org/apache/ignite/jdbc/ItJdbcAuthenticationTest.java
@@ -15,7 +15,7 @@
* limitations under the License.
*/
-package org.apache.ignite.internal.jdbc;
+package org.apache.ignite.jdbc;
import java.nio.file.Path;
import java.sql.Connection;
@@ -34,7 +34,7 @@ import org.junit.jupiter.api.TestInfo;
import org.junit.jupiter.api.TestInstance;
import org.junit.jupiter.api.TestInstance.Lifecycle;
-class ItJdbcTest extends IgniteIntegrationTest {
+class ItJdbcAuthenticationTest extends IgniteIntegrationTest {
private Cluster cluster;
@Nested