Skip to content

Commit dd0c00d

Browse files
committed
GROOVY-11543: Bump hsqldb to 2.7.4 (test dependency)
1 parent 9285eea commit dd0c00d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

subprojects/groovy-sql/src/spec/test/SqlTest.groovy

+2-2
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ class SqlTest extends GroovyTestCase {
7272
/*
7373
commented out as already on classpath
7474
// tag::sql_connecting_grab[]
75-
@Grab('org.hsqldb:hsqldb:2.7.3')
75+
@Grab('org.hsqldb:hsqldb:2.7.4')
7676
@GrabConfig(systemClassLoader=true)
7777
// create, use, and then close sql instance ...
7878
// end::sql_connecting_grab[]
@@ -335,7 +335,7 @@ class SqlTest extends GroovyTestCase {
335335
// tag::sql_basic_table_metadata[]
336336
def md = sql.connection.metaData
337337
assert md.driverName == 'HSQL Database Engine Driver'
338-
assert md.databaseProductVersion == '2.7.3'
338+
assert md.databaseProductVersion == '2.7.4'
339339
assert ['JDBCMajorVersion', 'JDBCMinorVersion'].collect{ md[it] } == [4, 2]
340340
assert md.stringFunctions.tokenize(',').contains('CONCAT')
341341
def rs = md.getTables(null, null, 'AUTH%', null)

0 commit comments

Comments
 (0)