Skip to content

Commit

Permalink
HHH-13597 Building DatabaseInformation fails on H2 without DATABASE_T…
Browse files Browse the repository at this point in the history
…O_UPPER
  • Loading branch information
dreab8 authored and Sanne committed Sep 27, 2019
1 parent 0e9ef8c commit e043480
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -102,7 +102,7 @@ public H2Dialect() {

if ( buildId >= 32 ) {
this.sequenceInformationExtractor = SequenceInformationExtractorH2DatabaseImpl.INSTANCE;
this.querySequenceString = "select * from information_schema.sequences";
this.querySequenceString = "select * from INFORMATION_SCHEMA.sequences";
}
else {
this.sequenceInformationExtractor = SequenceInformationExtractorNoOpImpl.INSTANCE;
Expand Down

0 comments on commit e043480

Please sign in to comment.