Hi,

I can't reproduce the problem. My test case is:

System.setProperty("h2.lobInDatabase", "false");
Class.forName("org.h2.Driver");
DeleteDbFiles.execute("~/temp", "test", false);
Connection conn = DriverManager.getConnection(
        "jdbc:h2:~/temp/test");
Statement stat = conn.createStatement();
stat.execute("create table test(id int primary key, d clob) " +
        "as select x, space(10000) from system_range(1, 10)");
stat.execute("shutdown defrag");
conn.close();

Please version of H2 do you use? Can you reproduce the problem on your
system using the test case above? To fix the problem, I'm afraid I
need a reproducible test case. See also
http://h2database.com/html/build.html#support "Please keep test cases
as simple and short as possible, but so that the problem can still be
reproduced. As a template, use: HelloWorld.java. Method that simply
call other methods should be avoided, as well as unnecessary exception
handling. Please use the JDBC API and no external tools or libraries.
The test should include all required initialization code, and should
be started with the main method."

Regards,
Thomas

-- 
You received this message because you are subscribed to the Google Groups "H2 
Database" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/h2-database?hl=en.

Reply via email to