Skip to content

Commit 11d5d56

Browse files
Bump org.xerial:sqlite-jdbc from 3.36.0 to 3.43.2.2 (#89)
* Bump org.xerial:sqlite-jdbc from 3.36.0 to 3.43.2.2 Bumps [org.xerial:sqlite-jdbc](https://github.com/xerial/sqlite-jdbc) from 3.36.0 to 3.43.2.2. - [Release notes](https://github.com/xerial/sqlite-jdbc/releases) - [Changelog](https://github.com/xerial/sqlite-jdbc/blob/master/CHANGELOG) - [Commits](xerial/sqlite-jdbc@3.36.0...3.43.2.2) --- updated-dependencies: - dependency-name: org.xerial:sqlite-jdbc dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> * Exclude all databased from regular tests * Disable upsert tests, as SQLite don't support it xerial/sqlite-jdbc#329 --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Marvin Froeder <[email protected]>
1 parent 254f75e commit 11d5d56

File tree

5 files changed

+25
-21
lines changed

5 files changed

+25
-21
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ jobs:
102102
- run:
103103
name: 'Test'
104104
command: |
105-
./mvnw -ntp verify -B -Dcom.querydsl.core.testutil.ExternalDatabase,com.querydsl.core.testutil.SlowTest,com.querydsl.core.testutil.Performance,com.querydsl.core.testutil.ReportingOnly,com.querydsl.core.testutil.EmbeddedDatabase
105+
./mvnw -ntp verify -B -Pno-databases
106106
buildExamples:
107107
<<: *defaults
108108
working_directory: ~/querydsl
@@ -117,7 +117,7 @@ jobs:
117117
- run:
118118
name: 'Test'
119119
command: |
120-
./mvnw -ntp verify -B -Dcom.querydsl.core.testutil.ExternalDatabase,com.querydsl.core.testutil.SlowTest,com.querydsl.core.testutil.Performance,com.querydsl.core.testutil.ReportingOnly,com.querydsl.core.testutil.Database -Pexamples
120+
./mvnw -ntp verify -B -Pexamples,no-databases
121121
testMySQL:
122122
<<: *defaults
123123
working_directory: ~/querydsl

pom.xml

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878
<mysql.version>8.0.30</mysql.version>
7979
<jtds.version>1.3.1</jtds.version>
8080
<cubrid.version>9.3.9.0002</cubrid.version>
81-
<sqlite.version>3.36.0</sqlite.version>
81+
<sqlite.version>3.43.2.2</sqlite.version>
8282
<teradata.version>13.10.00.35</teradata.version>
8383
<firebird.version>2.2.15</firebird.version>
8484

@@ -631,12 +631,6 @@
631631
<version>1.2.8</version>
632632
<configuration>
633633
<dynamicDependencies>
634-
<DynamicDependency>
635-
<groupId>org.apache.maven.surefire</groupId>
636-
<artifactId>surefire-junit47</artifactId>
637-
<version>${surefire.version}</version>
638-
<repositoryType>PLUGIN</repositoryType>
639-
</DynamicDependency>
640634
<DynamicDependency>
641635
<groupId>org.codehaus.mojo.signature</groupId>
642636
<artifactId>java18</artifactId>
@@ -913,6 +907,16 @@
913907
<directory>${basedir}/m2e-target</directory>
914908
</build>
915909
</profile>
910+
<profile>
911+
<id>no-databases</id>
912+
913+
<properties>
914+
<excludedGroups>com.querydsl.core.testutil.Database,
915+
com.querydsl.core.testutil.SlowTest,
916+
com.querydsl.core.testutil.Performance,
917+
com.querydsl.core.testutil.ReportingOnly</excludedGroups>
918+
</properties>
919+
</profile>
916920
</profiles>
917921

918922
<contributors>

querydsl-sql/src/test/java/com/querydsl/sql/InsertBase.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ public void insert_with_columns() {
240240
}
241241

242242
@Test
243-
@ExcludeIn({CUBRID, SQLSERVER})
243+
@ExcludeIn({CUBRID, SQLSERVER, SQLITE})
244244
public void insert_with_keys() throws SQLException {
245245
ResultSet rs = insert(survey).set(survey.name, "Hello World").executeWithKeys();
246246
assertTrue(rs.next());
@@ -249,7 +249,7 @@ public void insert_with_keys() throws SQLException {
249249
}
250250

251251
@Test
252-
@ExcludeIn({CUBRID, SQLSERVER})
252+
@ExcludeIn({CUBRID, SQLSERVER, SQLITE})
253253
public void insert_with_keys_listener() throws SQLException {
254254
final AtomicBoolean result = new AtomicBoolean();
255255
SQLListener listener =
@@ -270,21 +270,21 @@ public void end(SQLListenerContext context) {
270270
}
271271

272272
@Test
273-
@ExcludeIn({CUBRID, SQLSERVER})
273+
@ExcludeIn({CUBRID, SQLSERVER, SQLITE})
274274
public void insert_with_keys_Projected() throws SQLException {
275275
assertNotNull(insert(survey).set(survey.name, "Hello you").executeWithKey(survey.id));
276276
}
277277

278278
@Test
279-
@ExcludeIn({CUBRID, SQLSERVER})
279+
@ExcludeIn({CUBRID, SQLSERVER, SQLITE})
280280
public void insert_with_keys_Projected2() throws SQLException {
281281
Path<Object> idPath = ExpressionUtils.path(Object.class, "id");
282282
Object id = insert(survey).set(survey.name, "Hello you").executeWithKey(idPath);
283283
assertNotNull(id);
284284
}
285285

286286
@Test(expected = QueryException.class)
287-
@IncludeIn({DERBY, HSQLDB})
287+
@IncludeIn({DERBY, HSQLDB, SQLITE})
288288
public void insert_with_keys_OverriddenColumn() throws SQLException {
289289
String originalColumnName = ColumnMetadata.getName(survey.id);
290290
try {

querydsl-sql/src/test/java/com/querydsl/sql/MergeBase.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public void tearDown() throws SQLException {
5454
}
5555

5656
@Test
57-
@ExcludeIn({H2, CUBRID, SQLSERVER})
57+
@ExcludeIn({H2, CUBRID, SQLSERVER, SQLITE})
5858
public void merge_with_keys() throws SQLException {
5959
ResultSet rs =
6060
merge(survey)
@@ -68,7 +68,7 @@ public void merge_with_keys() throws SQLException {
6868
}
6969

7070
@Test
71-
@ExcludeIn({H2, CUBRID, SQLSERVER})
71+
@ExcludeIn({H2, CUBRID, SQLSERVER, SQLITE})
7272
public void merge_with_keys_listener() throws SQLException {
7373
final AtomicBoolean result = new AtomicBoolean();
7474
SQLListener listener =
@@ -128,7 +128,7 @@ public void merge_with_keys_columns_and_values_using_null() {
128128
}
129129

130130
@Test
131-
@ExcludeIn({CUBRID, DB2, DERBY, POSTGRESQL, SQLSERVER, TERADATA})
131+
@ExcludeIn({CUBRID, DB2, DERBY, POSTGRESQL, SQLSERVER, TERADATA, SQLITE})
132132
public void merge_with_keys_Null_Id() throws SQLException {
133133
ResultSet rs =
134134
merge(survey)
@@ -142,7 +142,7 @@ public void merge_with_keys_Null_Id() throws SQLException {
142142
}
143143

144144
@Test
145-
@ExcludeIn({H2, CUBRID, SQLSERVER})
145+
@ExcludeIn({H2, CUBRID, SQLSERVER, SQLITE})
146146
public void merge_with_keys_Projected() throws SQLException {
147147
assertNotNull(
148148
merge(survey)
@@ -153,7 +153,7 @@ public void merge_with_keys_Projected() throws SQLException {
153153
}
154154

155155
@Test
156-
@ExcludeIn({H2, CUBRID, SQLSERVER})
156+
@ExcludeIn({H2, CUBRID, SQLSERVER, SQLITE})
157157
public void merge_with_keys_Projected2() throws SQLException {
158158
Path<Object> idPath = ExpressionUtils.path(Object.class, "id");
159159
Object id =

querydsl-sql/src/test/java/com/querydsl/sql/SelectBase.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1375,13 +1375,13 @@ protected Pair<String, String> map(Tuple row) {
13751375
}
13761376

13771377
@Test
1378-
@ExcludeIn({HSQLDB}) // FIXME
1378+
@ExcludeIn({HSQLDB, SQLITE}) // FIXME
13791379
public void math() {
13801380
math(Expressions.numberTemplate(Double.class, "0.50"));
13811381
}
13821382

13831383
@Test
1384-
@ExcludeIn({FIREBIRD, SQLSERVER, HSQLDB}) // FIXME
1384+
@ExcludeIn({FIREBIRD, SQLSERVER, HSQLDB, SQLITE}) // FIXME
13851385
public void math2() {
13861386
math(Expressions.constant(0.5));
13871387
}

0 commit comments

Comments
 (0)