Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
44901321
提交
44901321
authored
9月 15, 2007
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
--no commit message
--no commit message
上级
76c066d8
隐藏空白字符变更
内嵌
并排
正在显示
5 个修改的文件
包含
7 行增加
和
7 行删除
+7
-7
faq.html
h2/src/docsrc/html/faq.html
+1
-1
Constants.java
h2/src/main/org/h2/engine/Constants.java
+2
-2
FunctionAlias.java
h2/src/main/org/h2/engine/FunctionAlias.java
+1
-1
JdbcResultSet.java
h2/src/main/org/h2/jdbc/JdbcResultSet.java
+2
-2
RandomUtils.java
h2/src/main/org/h2/util/RandomUtils.java
+1
-1
没有找到文件。
h2/src/docsrc/html/faq.html
浏览文件 @
44901321
...
...
@@ -39,7 +39,7 @@ Frequently Asked Questions
<p>
Usually, bugs get fixes as they are found. There is a release every few weeks.
Here is the list of known and confirmed issues as of
2007-0
8-2
5:
2007-0
9-1
5:
</p>
<ul>
<li>
Some problems have been found with right outer join. Internally, it is converted to left outer join, which
...
...
h2/src/main/org/h2/engine/Constants.java
浏览文件 @
44901321
...
...
@@ -70,8 +70,8 @@ import org.h2.constant.SysProperties;
*/
public
class
Constants
{
public
static
final
int
BUILD_ID
=
5
7
;
private
static
final
String
BUILD
=
"2007-0
8-2
5"
;
public
static
final
int
BUILD_ID
=
5
8
;
private
static
final
String
BUILD
=
"2007-0
9-1
5"
;
public
static
final
int
VERSION_MAJOR
=
1
;
public
static
final
int
VERSION_MINOR
=
0
;
...
...
h2/src/main/org/h2/engine/FunctionAlias.java
浏览文件 @
44901321
...
...
@@ -140,7 +140,7 @@ public class FunctionAlias extends DbObjectBase {
return
DbObject
.
FUNCTION_ALIAS
;
}
public
void
removeChildrenAndResources
(
Session
session
)
throws
SQLException
{
public
synchronized
void
removeChildrenAndResources
(
Session
session
)
throws
SQLException
{
className
=
methodName
=
null
;
javaMethod
=
null
;
invalidate
();
...
...
h2/src/main/org/h2/jdbc/JdbcResultSet.java
浏览文件 @
44901321
...
...
@@ -3154,7 +3154,7 @@ public class JdbcResultSet extends TraceObject implements ResultSet {
/**
* Returns the value of the specified column as a Clob.
*
* @param column
Name the name of the column label
* @param column
Index (1,2,...)
* @return the value
* @throws SQLException if the column is not found or if the result set is closed
*/
...
...
@@ -3177,7 +3177,7 @@ public class JdbcResultSet extends TraceObject implements ResultSet {
/**
* Returns the value of the specified column as a Clob.
*
* @param column
Index (1,2,...)
* @param column
Name the name of the column label
* @return the value
* @throws SQLException if the column is not found or if the result set is closed
*/
...
...
h2/src/main/org/h2/util/RandomUtils.java
浏览文件 @
44901321
...
...
@@ -77,7 +77,7 @@ public class RandomUtils {
try
{
Method
m
=
System
.
class
.
getMethod
(
"nanoTime"
,
new
Class
[
0
]);
if
(
m
!=
null
)
{
Object
o
=
m
.
invoke
(
null
,
null
);
Object
o
=
m
.
invoke
(
null
,
(
java
.
lang
.
Object
[])
null
);
out
.
writeUTF
(
o
.
toString
());
}
}
catch
(
Exception
e
)
{
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论