"ADD CONSTRAINT TEST_TAB_3_FK_1 "+
"FOREIGN KEY(c31) REFERENCES TEST_TAB_1(c11)");
stats.assertTableStats("TEST_TAB_3",1);
s.executeUpdate("ALTER TABLE TEST_TAB_3 "+
"DROP CONSTRAINT TEST_TAB_3_FK_1");
stats.assertNoStatsTable("TEST_TAB_3");
//Test - foreign key and primary key constraint
s.executeUpdate("CREATE TABLE TEST_TAB_2 (c21 int not null)");
s.executeUpdate("INSERT INTO TEST_TAB_2 VALUES(1),(2)");
s.executeUpdate("ALTER TABLE TEST_TAB_2 "+