Guofeng Zhang

Results 10 comments of Guofeng Zhang

see postTest() in test/controller/JaxbText.java.

see postTest() in test/controller/JaxbText.java.

It seems that the version of your JDK is less than 17. This is a Spring boot 3 project that requires at least Java 17. Please also verify, according to...

Sorry I didn't make it clear. The current code does not use HikariCP, so it works fine. The improvement I hope for is that Manticore can support datasources like HikariCP...

From what you did, I see the result of my Manticore: ``` mysql> SELECT @@session.tx_isolation; +------------------------+ | @@session.tx_isolation | +------------------------+ | | +------------------------+ ``` This is the source code of...

@sanikolaev, how can I set the Manticore transaction isolation level by the command line, or how can I change the value of @@session.tx_isolatio, so I can move on. As documented,...

Tried the latest dev version. The error is: ``` java.sql.SQLException: Could not map transaction isolation '0' to a valid JDBC level. ``` From the analysis [here](https://github.com/manticoresoftware/manticoresearch/issues/1618#issuecomment-1826484245), we know that @@session.tx_isolation...

The exception ``` java.lang.NumberFormatException: For input string: "" ``` indicates that mysql_version_string is not set or the value is incorrect, see [Notes on MySQL connectors](https://manual.manticoresearch.com/Connecting_to_the_server/MySQL_protocol#Notes-on-MySQL-connectors). However, after solving this problem,...

@beikov Your example runs just fine. Thanks.

I gotten it. For the above 2, I also debug into the location you point out at [#1644](https://github.com/Blazebit/blaze-persistence/issues/1644#issuecomment-1490076808). I think BlazeCriteriaBuilderRenderer.render() just transforms Querydsl's AST into Blaze's (I haven't fully...