We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee010ad commit c12e066Copy full SHA for c12e066
src/test/java/testsuite/x/devapi/CollectionModifyTest.java
@@ -1899,6 +1899,8 @@ public void testCollectionModifyAsyncMany() throws Exception {
1899
*/
1900
@Test
1901
public void testBug107510() throws Exception {
1902
+ assumeTrue(mysqlVersionMeetsMinimum(ServerVersion.parseVersion("8.0.5")), "MySQL 8.0.5+ is required to run this test.");
1903
+
1904
this.collection.add("{\"bug\": \"testBug107510\"}").execute();
1905
DbDoc doc = this.collection.find().execute().fetchOne();
1906
assertEquals("testBug107510", ((JsonString) doc.get("bug")).getString());
0 commit comments