assertEquals("John", crs.getString(1));
}
public void testBug48820() throws Exception {
CachedRowSetImpl crs;
Connection noBlobsConn = getConnectionWithProps("functionsNeverReturnBlobs=true");
this.rs = noBlobsConn.createStatement().executeQuery(
"SELECT PASSWORD ('SOMETHING')");
this.rs.first();
String fromPlainResultSet = this.rs.getString(1);
this.rs = noBlobsConn.createStatement().executeQuery(
"SELECT PASSWORD ('SOMETHING')");
crs = new CachedRowSetImpl();
crs.populate(this.rs);
crs.first();
assertEquals(fromPlainResultSet, crs.getString(1));
}