We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa11a0d commit c600374Copy full SHA for c600374
h2/src/test/org/h2/test/db/TestTempTables.java
@@ -56,8 +56,9 @@ private void testAnalyzeReuseObjectId() throws SQLException {
56
Connection conn = getConnection("tempTables");
57
Statement stat = conn.createStatement();
58
stat.execute("create local temporary table test(id identity)");
59
- PreparedStatement prep = conn.prepareStatement("insert into test values(null)");
60
- for(int i=0; i<10000; i++) {
+ PreparedStatement prep = conn
+ .prepareStatement("insert into test values(null)");
61
+ for (int i = 0; i < 10000; i++) {
62
prep.execute();
63
}
64
stat.execute("create local temporary table test2(id identity) as select x from system_range(1, 10)");
0 commit comments