}
public void testReadBlobRef()
throws IOException, InterruptedException, SQLException {
// This should give us an inline BLOB.
ResultSet resultSet = new MockResultSet();
BlobRef blob = loader.readBlobRef(0, resultSet);
assertNotNull(blob);
assertFalse(blob.isExternal());
byte [] data = blob.getData();
byte [] blobData = MockResultSet.blobData();