私はこの単純なテーブルを持っています(テスト用です):
create table table
(
key int not null primary key auto_increment,
name varchar(30)
);
次に、次のリクエストを実行します。
insert into table values ( null , 'one');// key=1
insert into table values ( null , 'two');// key=2
この段階ですべてうまくいったら、H2コンソールを閉じて再度開き、このリクエストを再実行します。
insert into table values ( null , 'three');// key=33
最後に、すべての結果は次のとおりです。
それが本当の問題であるならば、私はこの問題を解決する方法を知りません...作者からの応答を待っています...