Skip to content

Commit

Permalink
Merge pull request grails#13206 from matrei/matrei/h2-2.2.224
Browse files Browse the repository at this point in the history
Explicitly bump H2 to 2.2.224
  • Loading branch information
puneetbehl authored Nov 8, 2023
2 parents 6a185a2 + 61406c0 commit e7ff7a0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 10 deletions.
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ gradleNexusPluginVersion=2.3.1
gradleNexusStagingPluginVersion=0.12.0
groovyVersion=3.0.11
gspVersion=6.1.0
h2.version=1.4.199
h2Version=1.4.200
h2.version=2.2.224
h2Version=2.2.224
hibernateDatastoreVersion=8.0.1
jakartaAnnotationApiVersion=2.0.0
jansiVersion=1.18
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,15 +38,9 @@ class DataSourceGrailsPluginSpec extends Specification {
when:"A query is executed"
DataSource ds = ctx.getBean('dataSource', DataSource)
Sql sql = new Sql(ds)
int result = sql.call('''
CREATE TABLE user (
username VARCHAR(50),
password VARCHAR(50));
int result = sql.call('CREATE TABLE `user` (username VARCHAR(50), password VARCHAR(50)); select * from `user`')

select * from user''')

then:""
then:
result == 0


Expand Down

0 comments on commit e7ff7a0

Please sign in to comment.