Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
bfce01b2
提交
bfce01b2
authored
7月 15, 2011
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Documentation.
上级
d7ef09f4
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
2 行增加
和
2 行删除
+2
-2
roadmap.html
h2/src/docsrc/html/roadmap.html
+2
-1
Analyze.java
h2/src/main/org/h2/command/ddl/Analyze.java
+0
-1
没有找到文件。
h2/src/docsrc/html/roadmap.html
浏览文件 @
bfce01b2
...
...
@@ -82,6 +82,7 @@ See also <a href="build.html#providing_patches">Providing Patches</a>.
</li><li>
Cost for embedded temporary view is calculated wrong, if result is constant.
</li><li>
Count index range query (count(*) where id between 10 and 20).
</li><li>
Performance: update in-place.
</li><li>
Clustering: when a database is back alive, automatically synchronize with the master (requires readable transaction log).
</li><li>
Database file name suffix: a way to use no or a different suffix (for example using a slash).
</li><li>
Eclipse plugin.
</li><li>
Asynchronous queries to support publish/subscribe: SELECT ... FOR READ WAIT [maxMillisToWait].
...
...
@@ -102,7 +103,6 @@ See also <a href="build.html#providing_patches">Providing Patches</a>.
</li><li>
Compatibility: in MySQL, HSQLDB, /0.0 is NULL; in PostgreSQL, Derby: division by zero. HSQLDB: 0.0e1 / 0.0e1 is NaN.
</li><li>
Functional tables should accept parameters from other tables (see FunctionMultiReturn) SELECT * FROM TEST T, P2C(T.A, T.R).
</li><li>
Custom class loader to reload functions on demand.
</li><li>
Clustering: when a database is back alive, automatically synchronize with the master.
</li><li>
Test http://mysql-je.sourceforge.net/
</li><li>
H2 Console: the webclient could support more features like phpMyAdmin.
</li><li>
Support Oracle functions: TRUNC, NVL2, TO_CHAR, TO_DATE, TO_NUMBER.
...
...
@@ -553,6 +553,7 @@ See also <a href="build.html#providing_patches">Providing Patches</a>.
</li><li>
Support NATURAL [ { LEFT | RIGHT } [ OUTER ] | INNER ] JOIN (Derby, Oracle)
</li><li>
GROUP BY columnNumber (similar to ORDER BY columnNumber) (MySQL, PostgreSQL, SQLite; not by HSQLDB and Derby).
</li><li>
Sybase / MS SQL Server compatibility: CONVERT(..) parameters are swapped.
</li><li>
Index conditions: WHERE AGE>1 should not scan though all rows with AGE=1.
</li></ul>
<h2>
Not Planned
</h2>
...
...
h2/src/main/org/h2/command/ddl/Analyze.java
浏览文件 @
bfce01b2
...
...
@@ -37,7 +37,6 @@ public class Analyze extends DefineCommand {
session
.
commit
(
true
);
session
.
getUser
().
checkAdmin
();
Database
db
=
session
.
getDatabase
();
// TODO do we need to lock the table?
for
(
Table
table
:
db
.
getAllTablesAndViews
(
false
))
{
analyzeTable
(
session
,
table
,
sampleRows
,
true
);
}
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论