hibernate-reactive icon indicating copy to clipboard operation
hibernate-reactive copied to clipboard

JsonTypeTest fails for MariaDB

Open DavideD opened this issue 2 years ago • 4 comments
trafficstars

The test is temporarily disabled for MariaDB: c32c331d682e8e52060ea9bb059bb315cbee1831 Testing with MariaDB requires the support for MySQL: https://github.com/hibernate/hibernate-reactive/issues/1528

DavideD avatar Mar 22 '23 16:03 DavideD

May be related to #1605

blafond avatar May 17 '23 15:05 blafond

What makes you say that? That issue is about a new feature in Hibernate ORM. The test we have in Hibernate Reactive doesn't use that new feature and it passes with the other databases.

DavideD avatar May 17 '23 16:05 DavideD

I just noticed the new feature involving new annotations... and you are correct.

blafond avatar May 17 '23 17:05 blafond

Vertx leverages vertx-mysql-client. With MySQL the JsonObject type is identified as a JSON datatype. With MariaDB, the JsonObject type is identified as a LONG_TEXT datatype so it's not currently converted to expected JSON type.

blafond avatar Mar 15 '24 17:03 blafond