//Since we dropped the only statistics that existed for table T1, there
// will no stats found at this point
stats.assertNoStatsTable(tbl1);
s.execute("CALL SYSCS_UTIL.SYSCS_UPDATE_STATISTICS('APP','T1','I2')");
//The statistics for index I2 has been added back
stats.assertTableStats(tbl1, 1);
//Now update the statistics for the old index I1 using the new stored
//procedure. Doing this should add a row for it in sysstatistics table
s.execute("CALL SYSCS_UTIL.SYSCS_UPDATE_STATISTICS('APP','T1','I1')");
stats.assertTableStats(tbl1, 2);
//Drop the statistics on index I1 and then add it back by calling