Issues
- @Table(name = XX, schema = XX) not workingHHH-17010
- Metamodel imports cache increases indefinitely for dynamically generated HQL aliases eventually leading to an OOMHHH-14948Resolved issue: HHH-14948Ivaylo Mitrev
- JPA Attribute Converter ignored in Criteria Query Where ClauseHHH-14756Resolved issue: HHH-14756
- Hibernate has a dependency on apache-derby:10.11.1.1 that is vulnerable to CVE-2015-1832 with a CVSS of 9.1 and CVE-2018-1313 with a CVSS of 5.3HHH-14719Resolved issue: HHH-14719Sebastian Nohn
- Hibernate has a dependency to maven-core:3.0.5 that is vulnerable to CVE-2021-26291 with a CVSS of 9.1HHH-14715Resolved issue: HHH-14715Sebastian Nohn
- TimePropertyTest fails on MySQL 8.0 with a ComparisonFailureHHH-14697Resolved issue: HHH-14697Ranabir Chakraborty
- HibernateProxy class leaked on each entity manager factory closureHHH-14694Christian Beikov
- Add method Configuration.addInputStream(InputStreamAccess)HHH-14692
- Multiple Roottreat's with "order by" and case when on more than one treat on an inheritancetype.joined EntityHHH-14677
- DetachedMultipleCollectionChangeTest assertion failures on MariaDB Galera ClusterHHH-14637
- Oracle from version 12 started supporting the `offset ? rows fetch next ? rows only`syntax for paginationHHH-14624Resolved issue: HHH-14624Andrea Boriero
- Optimistic Lock throws org.hibernate.exception.SQLGrammarException: could not retrieve versionHHH-14616Resolved issue: HHH-14616Andrea Boriero
- Merge causes StackOverflow when JPA proxy compliance is enabledHHH-14608Resolved issue: HHH-14608Andrea Boriero
- TimestampTypeDescriptor instead of DateTypeDescriptor used in value binding when a JPA attribute converter to convert LocalDate to java.sql.Date is impliedHHH-14569
- entity-join ignores discriminator valueHHH-14568
- Omit inner joins for SUBSELECT fetch for assocation defined at the leaf of JOINED inheritance hierarchyHHH-14525
- hibernate-enhance-maven-plugin does not have @threadSafe so Maven emits warningHHH-14505
- Cache resolution of SimpleValue#getTypeHHH-14335Resolved issue: HHH-14335Christian Beikov
18 of 18
@Table(name = XX, schema = XX) not working
Description
Details
Details
Assignee
Unassigned
UnassignedReporter
Robert
RobertWorked in
Components
Affects versions
Priority
Created July 29, 2023 at 2:43 AM
Updated August 2, 2023 at 11:12 AM
Activity
Show:
Christian Beikov August 2, 2023 at 11:12 AM
Try again with the latest 5.3 version, which currently is 5.3.30.Final.
I was previously using Hibernate Core 4.2.18 and now migrated to Hibernate Core 5.3.20.
Facing issue with entities where table annotation is declared as following:
@Table(name = XX, schema = XX)
This results in java.lang.RuntimeException: Unexpected status FAILED (javax.persistence.PersistenceException: org.hibernate.exception.SQLGrammarException: could not extract ResultSet
When I change the annotation to:
@Table(name="schemaname.tablename")
, it starts working fine.
I could not find any such change listed in Hibernate migration guide.
Is “@Table(name = XX, schema = XX)” not supported anymore ?