提交 7eb40855 authored 作者: Thomas Mueller's avatar Thomas Mueller

--no commit message

--no commit message
上级 7430fb79
......@@ -37,7 +37,9 @@ Hypersonic SQL or HSQLDB. H2 is built from scratch.
<h3>Version 1.0 (Current)</h3>
<h3>Version 1.0 / TODO (Build TODO)</h3><ul>
<li>If large result sets (backed by a temporary file) where not closed, the file was not deleted.
<li>New column ID for INFORMATION_SCHEMA.INDEXES, SEQUENCES, USERS, ROLES, RIGHTS,
FUNCTION_ALIASES, SCHEMATA, VIEWS, CONSTRAINTS, CONSTANTS, DOMAINS, TRIGGERS.
</li><li>If large result sets (backed by a temporary file) where not closed, the file was not deleted.
Now, the default result set type is FETCH_FORWARD. This means temp files are deleted
automatically (without having to close the result set explicitly). But it also means
ResultSet.beforeFirst can only be called for scrollable result sets. To create a scrollable resut set,
......
......@@ -614,7 +614,7 @@ public class Database implements DataHandler {
}
private void addMetaData(int type) throws SQLException {
MetaTable m = new MetaTable(infoSchema, type);
MetaTable m = new MetaTable(infoSchema, -1-type, type);
infoSchema.add(m);
}
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论