https://hibernate.atlassian.net/browse/HHH-11073
Hibernate converts a query like:
select cast( true as boolean ) ...
to SQL:
select cast ( 1 as bit ) ....
Instead, Hibernate should be converted to SQL:
select cast ( 1 as char ) ....
- is cloned by
-
JBEAP-5816 [QE] (7.0.z) [HHH-11073] Casting to boolean in query fails on MySQL
- Verified
- is incorporated by
-
JBEAP-5678 [GSS](7.1.0) Upgrade to Hibernate ORM 5.1.3.Final when available
- Verified
- relates to
-
JBEAP-5302 [GSS] (7.1.0) HHH-10757 HHH-9021 : "select new ..." with CAST( NULL AS ...) fails with QuerySyntaxException: unexpected AST node: NULL
- Verified
- cloned from
-
HHH-11073 Loading...