*
* @throws SQLException
*/
@Test
public void meta_result_set_double_02() throws SQLException {
MetaResultSet results = new MetaResultSet(new ColumnInfo[] { new ByteColumn("Test", ResultSetMetaData.columnNullable,
true) }, new Object[][] { { null } });
Assert.assertTrue(results.next());
double value = results.getDouble(1);
Assert.assertEquals(0d, value, 0d);
Assert.assertTrue(results.wasNull());
Assert.assertFalse(results.next());
results.close();
Assert.assertTrue(results.isClosed());
}