Here's a snippet for testSimple.in.txt that shows the problem:

create table test1 (foo varchar(100));
alter table test1 add id bigint identity(5, 5) not null;
insert into test1 values (null, null);
insert into test1 values (null, null);
select count(*) from test1 where id=5;
> 1;
select count(*) from test1 where id=10;
> 1;
delete from test1;
drop table test1;
@reconnect;


Both asserts fail. The id column is created with start and increment of 
both 1.


Cheers,
Thomas

-- 
You received this message because you are subscribed to the Google Groups "H2 
Database" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/h2-database.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to