Description
When using an @Index with multiple columns we should strip the spaces of the column names. Right now this leads to an Exception:
The following works:
@Index(name = "IS_ADDR", columnList = "COUNTRY,BIC,CITY,STREET,HOUSENR"),
But adding spaces breaks the schema generator:
@Index(name = "IS_ADDR", columnList = "COUNTRY, BIC, CITY, STREET, HOUSENR"),