H2不丢弃临时表的序列

时间:2014-06-29 11:31:34

标签: java sql h2

我有一个应用程序,我使用H2临时表来存储大缓存。但是当我关闭所有连接并关闭数据库时,我的表的序列没有丢失。过了一会儿,我有这么多泄密的序列,随机名称。

问题:

  • 设计中不删除临时表的序列?

  • 我怎么能弄清楚任何表都没有使用具体序列,所以我可以删除该序列?

这是简单的junit4测试:

import org.junit.Test;

import java.io.File;
import java.sql.*;

import static org.junit.Assert.assertEquals;

public class H2Test {
  String databaseUrl = "jdbc:h2:./SST;";
  String userName = "sa";
  String password = "";
  @Test
  public void tempTableTest() throws Exception {
    Class.forName("org.h2.Driver");
    File databaseFile = new File("./SST.mv.db");
    if(databaseFile.exists()){
      databaseFile.delete();
    }

    assertCount("SELECT count(*) FROM INFORMATION_SCHEMA.SEQUENCES", 0);
    assertCount("SELECT count(*) FROM INFORMATION_SCHEMA.TABLES where table_name = 'SST'", 0);

    try (Connection connection = DriverManager.getConnection(databaseUrl, userName, password)) {
      execute(connection, "CREATE CACHED LOCAL TEMPORARY TABLE SST ( id BIGINT IDENTITY, value VARCHAR(2048) NULL)");
      execute(connection, "INSERT INTO sst(value) VALUES('some value')");
      execute(connection, "SHUTDOWN");
    }

    assertCount("SELECT count(*) FROM INFORMATION_SCHEMA.TABLES where table_name = 'SST'", 0);
    assertCount("SELECT count(*) FROM INFORMATION_SCHEMA.SEQUENCES", 0);
  }

  private void assertCount(String query, int count) throws SQLException {
    try (Connection connection = DriverManager.getConnection(databaseUrl, userName, password) ) {
      try (Statement st = connection.createStatement()) {
        ResultSet resultSet = st.executeQuery(query);
        resultSet.next();
        assertEquals(count, resultSet.getInt(1));
        execute(connection, "SHUTDOWN");
      }
    }
  }

  public void execute(Connection connection, String statement) throws SQLException {
    try (Statement st = connection.createStatement()) {
      st.execute(statement);
    }
  }
}

1 个答案:

答案 0 :(得分:1)

这是H2数据库中的错误。它将在H2版本1.4.180中修复。临时表的序列不应存储在数据库文件中。并且它们实际上没有存储,直到它们被首次使用(作为您案例中insert语句的一部分)。

如果要手动删除序列,可以检查是否在任何表中引用了序列。一种方法是运行script nodata语句,并检查(通过正则表达式匹配)是否引用序列。