ArrayStoreException in Constraint.generateName

Description

I have the following mapping inside an entity:

When I start the application the following exception occurs:

This is, because Table.generateName(List keyColumns) is called with a list that contains a Column and a Formula object. Inside that method org.hibernate.mapping.Constraint#generateName(java.lang.String, org.hibernate.mapping.Table, java.util.List<org.hibernate.mapping.Column>) is called:

The call columns.toArray(new Column[columns.size()]) causes ArrayStoreException because an array for Column is initialized, but the columns list also contains a Formula object.

I'm using spring 5.1.7, spring boot 2.1.5, spring-data 2.1.8, hibernate-core 5.3.10.Final

Activity

Show:

Sanne GrinoveroNovember 18, 2019 at 3:42 PM

Thanks for the test! Fixed in master.

Andreas KneesNovember 15, 2019 at 10:54 PM

I created the test in pull request 3102.

Former userNovember 11, 2019 at 9:22 PM

Please create a test that reproduces this issue without using Spring. You can find test templates at

Fixed

Details

Assignee

Reporter

Components

Fix versions

Affects versions

Priority

Created November 11, 2019 at 9:24 AM
Updated December 5, 2019 at 4:27 PM
Resolved November 18, 2019 at 3:41 PM