提交 50a28fb4 authored 作者: Thomas Mueller's avatar Thomas Mueller

--no commit message

--no commit message
上级 f1e33e82
......@@ -16,7 +16,10 @@ Change Log
<h1>Change Log</h1>
<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.
</li><li>Fixed the Oracle mode: Oracle allows multiple rows only where
all columns of the unique index are NULL.
......
......@@ -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
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;
create domain email as varchar;
create domain email as varchar comment 'email';
create table test(e email);
select * from INFORMATION_SCHEMA.COLUMNS where table_name='TEST';
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
https://bugs.eclipse.org/bugs/show_bug.cgi?id=137701
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论