Skip to content

Commit ae60ace

Browse files
committed
fix table conflict in tests
1 parent f22eb15 commit ae60ace

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

jdbc-v2/src/test/java/com/clickhouse/jdbc/DetachedResultSetTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ public class DetachedResultSetTest extends JdbcIntegrationTest {
3636

3737
@Test(groups = "integration")
3838
public void shouldReturnColumnIndex() throws SQLException {
39-
runQuery("CREATE TABLE rs_test_data (id UInt32, val UInt8) ENGINE = MergeTree ORDER BY (id)");
40-
runQuery("INSERT INTO rs_test_data VALUES (1, 10), (2, 20)");
39+
runQuery("CREATE TABLE detached_rs_test_data (id UInt32, val UInt8) ENGINE = MergeTree ORDER BY (id)");
40+
runQuery("INSERT INTO detached_rs_test_data VALUES (1, 10), (2, 20)");
4141

4242
try (Connection conn = getJdbcConnection()) {
4343
try (Statement stmt = conn.createStatement()) {

0 commit comments

Comments
 (0)