mirror of
https://github.com/querydsl/querydsl.git
synced 2026-06-27 21:01:15 +08:00
Add test exclusion
This commit is contained in:
parent
ef56087f0a
commit
0675470109
@ -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)
|
||||
|
||||
Loading…
Reference in New Issue
Block a user