Max Cheban commented on an issue
Hibernate ORM / Bug HHH-6584
HSQLDB dialect : wrong type in generated DDL for BigDecimal
Hi,

I get a wrong column type in the generated DDL when using the @Column annotation for a BigDecimal property.

My Java code:
@Column
public BigDecimal getAmount()
{
return amount;
}

The generated table creation instruction :
create table inv_invoice (id bigint not null, amount numeric, primary key (id))

The generated type should be "decimal" (...