operator does not exist: uuid = character varying solution

It's pg problem

operator does not exist: uuid = character varying
Hint: No operator matches the given name and argument type(s). You might need to add explicit type casts.

 

Please test if setting database option stringtype=unspecified works. 

This means that the configuration &stringtype=unspecified is added to the jdbc url, an example is as follows:

<datasource.driverclassname>org.postgresql.Driver</datasource.driverclassname>
<datasource.url>jdbc:postgresql://xxx.xxx.xxx.xxx:xxx/db?currentSchema=xxx&amp;stringtype=unspecified</datasource.url>

 

Guess you like

Origin blog.csdn.net/londa/article/details/109073570