// delete the only row in the table, and make sure
// isCurrentPositionDeleted() works.
if (scan.isCurrentPositionDeleted())
throw T_Fail.testFailMsg("current row should not be deleted\n");
if (!scan.doesCurrentPositionQualify())
throw T_Fail.testFailMsg("current row should still qualify\n");
scan.delete();
if (!scan.isCurrentPositionDeleted())
throw T_Fail.testFailMsg("current row should be deleted\n");
if (scan.doesCurrentPositionQualify())