Is there a way to use postgres' inet or cidr data types with openjpa? I've tried the obvious:
@Column( nullable=false, columnDefinition="cidr" )
private String address;
But that fails when the DDL executes because it tries to give it a length in
the column definition:
address cidr(255) NOT NULL
--
View this message in context:
http://n2.nabble.com/PostgreSQL-inet-or-cidr-data-types-tp3204078p3204078.html
Sent from the OpenJPA Users mailing list archive at Nabble.com.
