Add test exclusion

This commit is contained in:
Timo Westkämper 2013-09-18 21:08:25 +03:00
parent ef56087f0a
commit 0675470109

View File

@ -17,6 +17,7 @@ import static com.mysema.query.Constants.survey;
import static com.mysema.query.Constants.survey2;
import static com.mysema.query.Target.CUBRID;
import static com.mysema.query.Target.H2;
import static com.mysema.query.Target.POSTGRES;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertTrue;
@ -100,7 +101,7 @@ public class MergeBase extends AbstractBaseTest{
}
@Test
@ExcludeIn(CUBRID)
@ExcludeIn({CUBRID, POSTGRES})
public void Merge_With_Keys_Null_Id() throws SQLException{
ResultSet rs = merge(survey).keys(survey.id)
.setNull(survey.id)