@@ -59,6 +59,8 @@ public void defaultModeTest() throws SQLException {
59
59
60
60
connection .createStatement ().execute (CREATE_TABLE );
61
61
62
+ Assertions .assertTrue (connection .isValid (10 ));
63
+
62
64
LocalDate ld = LocalDate .of (2017 , 12 , 3 );
63
65
String prefix = "text-value-" ;
64
66
int idx = 0 ;
@@ -141,6 +143,8 @@ public void customQueriesTest() throws SQLException {
141
143
142
144
conn .createStatement ().execute (CREATE_TABLE );
143
145
146
+ Assertions .assertTrue (conn .isValid (10 ));
147
+
144
148
LocalDate ld = LocalDate .of (2017 , 12 , 3 );
145
149
String prefix = "text-value-" ;
146
150
int idx = 0 ;
@@ -219,6 +223,8 @@ public void forceScanAndBulkTest() throws SQLException {
219
223
220
224
conn .createStatement ().execute (CREATE_TABLE );
221
225
226
+ Assertions .assertTrue (conn .isValid (10 ));
227
+
222
228
LocalDate ld = LocalDate .of (2017 , 12 , 3 );
223
229
String prefix = "text-value-" ;
224
230
int idx = 0 ;
@@ -330,6 +336,8 @@ public void streamResultsTest() throws SQLException {
330
336
331
337
conn .createStatement ().execute (CREATE_TABLE );
332
338
339
+ Assertions .assertTrue (conn .isValid (10 ));
340
+
333
341
LocalDate ld = LocalDate .of (2017 , 12 , 3 );
334
342
String prefix = "text-value-" ;
335
343
int idx = 0 ;
@@ -454,6 +462,8 @@ public void tableServiceModeTest() throws SQLException {
454
462
455
463
connection .createStatement ().execute (CREATE_TABLE );
456
464
465
+ Assertions .assertTrue (connection .isValid (10 ));
466
+
457
467
LocalDate ld = LocalDate .of (2017 , 12 , 3 );
458
468
String prefix = "text-value-" ;
459
469
int idx = 0 ;
0 commit comments