Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
50a28fb4
提交
50a28fb4
authored
7月 27, 2008
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
--no commit message
--no commit message
上级
f1e33e82
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
5 行增加
和
27 行删除
+5
-27
changelog.html
h2/src/docsrc/html/changelog.html
+4
-1
TestAll.java
h2/src/test/org/h2/test/TestAll.java
+1
-26
没有找到文件。
h2/src/docsrc/html/changelog.html
浏览文件 @
50a28fb4
...
@@ -16,7 +16,10 @@ Change Log
...
@@ -16,7 +16,10 @@ Change Log
<h1>
Change Log
</h1>
<h1>
Change Log
</h1>
<h2>
Next Version (unreleased)
</h2>
<h2>
Next Version (unreleased)
</h2>
<ul><li>
ResultSetMetaData.getColumnClassName now returns the correct
<ul><li>
The comment of a domain (user defined data type) is now used as the
default column comment when creating a column with this domain.
</li><li>
Invalid database names are now detected and a better error message is thrown.
</li><li>
ResultSetMetaData.getColumnClassName now returns the correct
class name for BLOB and CLOB.
class name for BLOB and CLOB.
</li><li>
Fixed the Oracle mode: Oracle allows multiple rows only where
</li><li>
Fixed the Oracle mode: Oracle allows multiple rows only where
all columns of the unique index are NULL.
all columns of the unique index are NULL.
...
...
h2/src/test/org/h2/test/TestAll.java
浏览文件 @
50a28fb4
...
@@ -270,38 +270,13 @@ java org.h2.test.TestAll timer
...
@@ -270,38 +270,13 @@ java org.h2.test.TestAll timer
/*
/*
H2 databases need to have a file name prefix.
Probably the database should throw a meaningful exception
if the last element in the URL path is a slash (or backslash).
I will try to implement that for the next release.
Improved compatibility with DB2: support for FETCH .. ROWS
Improved compatibility with DB2: support for FETCH .. ROWS
drop table test;
create table test(a int);
insert into test values(1);
insert into test values(2);
select -test.a a from test order by test.a;
select -test.a from test order by test.a;
select -test.a aa from test order by a;
select -test.a aa from test order by aa;
select -test.a a from test order by test.a;
select -test.a a from test order by a;
drop all objects;
drop all objects;
create domain email as varchar;
create domain email as varchar
comment 'email'
;
create table test(e email);
create table test(e email);
select * from INFORMATION_SCHEMA.COLUMNS where table_name='TEST';
select * from INFORMATION_SCHEMA.COLUMNS where table_name='TEST';
script nosettings;
script nosettings;
create t1 (c1 char(1)); create unique index i1 on t1(c1); insert
into t1 values (null); insert into t1 values (null);
succeeds on Oracle and H2 1.0.75 with ;MODE=Oracle in the URL.
create t2(c1 char(1), c2 (char(1)); create unique index i2 on
t2(c1, c2); insert into t2 values ('a', null); insert into t2 values
insert into t5 values (null, null);
will succeed on Oracle multiple times.
Check Eclipse DTP, see also
Check Eclipse DTP, see also
https://bugs.eclipse.org/bugs/show_bug.cgi?id=137701
https://bugs.eclipse.org/bugs/show_bug.cgi?id=137701
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论