// key constraint. Update statisitcs procedure is only available
// in 10.5 and upwards and hence can't use that procedure here
// since we are testing older releases too.
s.execute("CALL SYSCS_UTIL.SYSCS_UPDATE_STATISTICS('APP','TEST_TAB_2', null)");
//s.execute("CALL SYSCS_UTIL.SYSCS_COMPRESS_TABLE('APP','TEST_TAB_2',1)");
stats.assertTableStats("TEST_TAB_2",2);
s.executeUpdate("ALTER TABLE TEST_TAB_2 "+
"DROP CONSTRAINT TEST_TAB_2_FK_1");
//Dropping the foreign key constraint does not remove it's
// statistics row because of DERBY-5681.
stats.assertTableStats("TEST_TAB_2", expected);