File tree 1 file changed +2
-2
lines changed
subprojects/groovy-sql/src/spec/test
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ class SqlTest extends GroovyTestCase {
72
72
/*
73
73
commented out as already on classpath
74
74
// tag::sql_connecting_grab[]
75
- @Grab('org.hsqldb:hsqldb:2.7.3 ')
75
+ @Grab('org.hsqldb:hsqldb:2.7.4 ')
76
76
@GrabConfig(systemClassLoader=true)
77
77
// create, use, and then close sql instance ...
78
78
// end::sql_connecting_grab[]
@@ -335,7 +335,7 @@ class SqlTest extends GroovyTestCase {
335
335
// tag::sql_basic_table_metadata[]
336
336
def md = sql.connection.metaData
337
337
assert md.driverName == 'HSQL Database Engine Driver'
338
- assert md.databaseProductVersion == '2.7.3 '
338
+ assert md.databaseProductVersion == '2.7.4 '
339
339
assert ['JDBCMajorVersion', 'JDBCMinorVersion'].collect{ md[it] } == [4, 2]
340
340
assert md.stringFunctions.tokenize(',').contains('CONCAT')
341
341
def rs = md.getTables(null, null, 'AUTH%', null)
You can’t perform that action at this time.
0 commit comments