File tree Expand file tree Collapse file tree 1 file changed +0
-2
lines changed
src/test/java/com/aerospike/jdbc Expand file tree Collapse file tree 1 file changed +0
-2
lines changed Original file line number Diff line number Diff line change @@ -99,7 +99,6 @@ public void testSelectAllColumns() throws SQLException {
9999 assertTrue (resultSet .next ());
100100 assertEquals (resultSet .getString (METADATA_DIGEST_COLUMN_NAME ), "212ddf97ff3fe0f6dec5e1626d92a635a55171c2" );
101101 assertEquals (resultSet .getInt (METADATA_GEN_COLUMN_NAME ), 1 );
102- assertTrue (resultSet .getInt (METADATA_TTL_COLUMN_NAME ) > 0 );
103102 assertFalse (resultSet .next ());
104103 } finally {
105104 closeQuietly (statement );
@@ -119,7 +118,6 @@ public void testSelectMetadataColumns() throws SQLException {
119118 assertTrue (resultSet .next ());
120119 assertNull (resultSet .getObject (METADATA_DIGEST_COLUMN_NAME ));
121120 assertEquals (resultSet .getInt (METADATA_GEN_COLUMN_NAME ), 1 );
122- assertTrue (resultSet .getInt (METADATA_TTL_COLUMN_NAME ) > 0 );
123121 assertEquals (resultSet .getInt ("int1" ), 11100 );
124122 assertFalse (resultSet .next ());
125123 } finally {
You can’t perform that action at this time.
0 commit comments