//Update or drop statistics for index named STATISTICS. Note that there
// is also a column named STATISTICS in the table
s.executeUpdate("CALL SYSCS_UTIL.SYSCS_DROP_STATISTICS('APP','T1','STATISTICS')");
stats.assertNoStatsTable(tbl);
s.executeUpdate("CALL SYSCS_UTIL.SYSCS_UPDATE_STATISTICS('APP','T1','STATISTICS')");
stats.assertTableStats(tbl, 1);
s.executeUpdate("DROP TABLE t1");
// Check that we haven't created some other statistics as a side-effect.
assertEquals(initialStatsCount, stats.getStats().length);
}