File tree 3 files changed +28
-1
lines changed
main/user-impl/java/com/mysql/cj/jdbc
test/java/testsuite/regression
3 files changed +28
-1
lines changed Original file line number Diff line number Diff line change 3
3
4
4
Version 8.0.28
5
5
6
+ - Fix for Bug#85223 (25656020), MYSQLSQLXML SETSTRING CRASH.
7
+
6
8
- Fix for Bug#84365 (33425867), INSERT..VALUE with VALUES function lead to a StringIndexOutOfBoundsException.
7
9
8
10
- Fix for Bug#105211 (33468860), class java.time.LocalDate cannot be cast to class java.sql.Date.
Original file line number Diff line number Diff line change @@ -404,7 +404,7 @@ protected String readerToString(Reader reader) throws SQLException {
404
404
405
405
protected synchronized Reader serializeAsCharacterStream () throws SQLException {
406
406
checkClosed ();
407
- if (this .workingWithResult ) {
407
+ if (this .workingWithResult || this . owningResultSet == null ) {
408
408
// figure out what kind of result
409
409
if (this .stringRep != null ) {
410
410
return new StringReader (this .stringRep );
Original file line number Diff line number Diff line change @@ -11873,4 +11873,29 @@ public void testBug84365() throws Exception {
11873
11873
assertFalse(this.rs.next());
11874
11874
}
11875
11875
}
11876
+
11877
+ /**
11878
+ * Test fix for Bug#85223 (25656020), MYSQLSQLXML SETSTRING CRASH.
11879
+ *
11880
+ * @throws Exception
11881
+ */
11882
+ @Test
11883
+ public void testBug85223() throws Exception {
11884
+ Properties props = new Properties();
11885
+ props.setProperty(PropertyKey.sslMode.getKeyName(), SslMode.DISABLED.name());
11886
+ props.setProperty(PropertyKey.allowPublicKeyRetrieval.getKeyName(), "true");
11887
+
11888
+ String elementString = "<Person ID=\"1\"><PersonType>M</PersonType><FirstName>FName</FirstName><LastName>LName</LastName></Person>";
11889
+ Connection con = getConnectionWithProps(props);
11890
+ PreparedStatement pst = con.prepareStatement("SELECT ExtractValue(?,?) as val1");
11891
+ SQLXML xml = con.createSQLXML();
11892
+ xml.setString(elementString);
11893
+ pst.setSQLXML(1, xml);
11894
+ pst.setString(2, "/Person/LastName");
11895
+ pst.execute();
11896
+ this.rs = pst.getResultSet();
11897
+ this.rs.next();
11898
+ String value = this.rs.getString(1);
11899
+ assertEquals("LName", value);
11900
+ }
11876
11901
}
You can’t perform that action at this time.
0 commit comments