Skip to content

Commit

Permalink
Update IoTDBDatabaseIT.java
Browse files Browse the repository at this point in the history
  • Loading branch information
Caideyipi committed Jan 26, 2025
1 parent 885d62a commit cb282d1
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -456,9 +456,9 @@ public void testMixedDatabase() throws SQLException {
EnvFactory.getEnv().getConnection(BaseEnv.TABLE_SQL_DIALECT);
final Statement statement = connection.createStatement()) {
statement.execute("create database test");
statement.execute("use test;");
statement.execute("create table table1(id1 tag, s1 string);");
statement.execute("insert into table1 values(0, 'd1', null), (1,'d1', 1);");
statement.execute("use test");
statement.execute("create table table1(id1 tag, s1 string)");
statement.execute("insert into table1 values(0, 'd1', null), (1,'d1', 1)");
}

try (final Connection connection = EnvFactory.getEnv().getConnection();
Expand Down

0 comments on commit cb282d1

Please sign in to comment.