提交 37b497e2 authored 作者: Thomas Mueller's avatar Thomas Mueller

--no commit message

--no commit message
上级 2ab24ddf
...@@ -69,8 +69,8 @@ import org.h2.message.TraceSystem; ...@@ -69,8 +69,8 @@ import org.h2.message.TraceSystem;
*/ */
public class Constants { public class Constants {
public static final int BUILD_ID = 53; public static final int BUILD_ID = 54;
private static final String BUILD = "2007-07-03"; private static final String BUILD = "2007-07-12";
public static final int VERSION_MAJOR = 1; public static final int VERSION_MAJOR = 1;
public static final int VERSION_MINOR = 0; public static final int VERSION_MINOR = 0;
......
...@@ -94,10 +94,7 @@ java -Xmx512m -Xrunhprof:cpu=samples,depth=8 org.h2.tools.RunScript -url jdbc:h2 ...@@ -94,10 +94,7 @@ java -Xmx512m -Xrunhprof:cpu=samples,depth=8 org.h2.tools.RunScript -url jdbc:h2
/* /*
whats faster, stringBuffer.append.append.append or buff.append buff.append... storages should be an int hash map
maybe replace StringBuffer with own class (StringCreator)
storages should be an inthashmap
Test with newest Hibernate Test with newest Hibernate
......
...@@ -200,13 +200,12 @@ public class TestCases extends TestBase { ...@@ -200,13 +200,12 @@ public class TestCases extends TestBase {
check("Hello", rs.getString(1)); check("Hello", rs.getString(1));
checkFalse(rs.next()); checkFalse(rs.next());
int todo; rs = stat.executeQuery("SELECT ? FROM DUAL UNION ALL SELECT ? FROM DUAL {1: 'Hello', 2:'World' }");
// rs = stat.executeQuery("SELECT ? FROM DUAL UNION ALL SELECT ? FROM DUAL {1: 'Hello', 2:'World' }"); rs.next();
// rs.next(); check("Hello", rs.getString(1));
// check("Hello", rs.getString(1)); rs.next();
// rs.next(); check("World", rs.getString(1));
// check("World", rs.getString(1)); checkFalse(rs.next());
// checkFalse(rs.next());
conn.close(); conn.close();
} }
......
...@@ -494,4 +494,4 @@ latin tgconstrname datallowconn atttypmod dattablespace attrelid ctid timestampt ...@@ -494,4 +494,4 @@ latin tgconstrname datallowconn atttypmod dattablespace attrelid ctid timestampt
nspname objsubid typnamespace rolcreaterole tgrelid spclocation relhasrules dont indkey postmaster nspname objsubid typnamespace rolcreaterole tgrelid spclocation relhasrules dont indkey postmaster
relkind autovacuum datlastsysoid attisdropped amname datacl deallocate tgdeferrable stats relkind autovacuum datlastsysoid attisdropped amname datacl deallocate tgdeferrable stats
spcacl relname rolvaliduntil attnotnull authid aclitem spcacl relname rolvaliduntil attnotnull authid aclitem
plpgsql interrupting spring oids plperl regex plpgsql interrupting spring oids plperl regex newest
\ No newline at end of file \ No newline at end of file
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论