Skip to content

Commit 3555c9b

Browse files
committed
Add SQLite to test Dbms conditions for in-padding queries
1 parent ce5995f commit 3555c9b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

integration-test-java/src/test/java/org/seasar/doma/it/criteria/QueryDslEntitySelectTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -485,7 +485,7 @@ void where_in3() {
485485
}
486486

487487
@Test
488-
@Run(onlyIf = {Dbms.H2, Dbms.MYSQL, Dbms.POSTGRESQL, Dbms.H2, Dbms.ORACLE})
488+
@Run(onlyIf = {Dbms.H2, Dbms.MYSQL, Dbms.POSTGRESQL, Dbms.SQLITE, Dbms.ORACLE})
489489
void where_in2_padding() {
490490
Config newConfig =
491491
new DelegatingConfig(config) {
@@ -524,7 +524,7 @@ public boolean requiresInListPadding() {
524524
}
525525

526526
@Test
527-
@Run(onlyIf = {Dbms.H2, Dbms.MYSQL, Dbms.POSTGRESQL, Dbms.H2, Dbms.ORACLE})
527+
@Run(onlyIf = {Dbms.H2, Dbms.MYSQL, Dbms.POSTGRESQL, Dbms.SQLITE, Dbms.ORACLE})
528528
void where_in3_padding() {
529529
Config newConfig =
530530
new DelegatingConfig(config) {

0 commit comments

Comments
 (0)