I was able to work around this problem with the auditlog data column and a few other columns using the ALTER TABLE statements below to convert to a VARCHAR of shorter length than the error message demanded. However, I'm now stymied by a subsequent error:
"Wrong column type in public.service_defs for column data. Found: oid, expected: blob" -- I tried converting the type to bytea but this doesn't satisfy Hibernate.
I feel like I've got the wrong version of a script here, but I was careful to get the PostgreSQL script for apiman 1.1.9.Final.
ALTER TABLE auditlog
ALTER COLUMN data TYPE varchar(10485760);
ALTER TABLE gateways
ALTER COLUMN configuration TYPE varchar(10485760);
ALTER TABLE policies
ALTER COLUMN configuration TYPE varchar(10485760);
I'm getting a weird data type exception when issuing a request to the API manager running against a Postgres instance:
The DDL does make that into a text column; I'm not sure why Hibernate doesn't like it and instead wants a VARCHAR that is too big for Postgres. This is on PostgreSQL 9.4.4; my driver configuration in the standalone-apiman.xml uses postgresql-9.3-1102-jdbc41.jar
and doesn't have any particular validation configuration.
Relevant stack:
UT005023: Exception handling request to /apiman/currentuser/info: org.jboss.resteasy.spi.UnhandledException: org.jboss.weld.exceptions.WeldException: WELD-000049: Unable to invoke public void io.apiman.manager.api.jpa.EntityManagerFactoryAccessor.postConstruct()
on io.apiman.manager.api.jpa.EntityManagerFactoryAccessor@325203f1
…
Caused by: javax.persistence.PersistenceException: Unable to build entity manager factory
…
Caused by: org.hibernate.HibernateException: Wrong column type in public.auditlog for column data. Found: text, expected
: varchar(2147483647)
at org.hibernate.mapping.Table.validateColumns(Table.java:372) [hibernate-core-4.3.7.Final.jar:4.3.7.Final]
at org.hibernate.cfg.Configuration.validateSchema(Configuration.java:1338) [hibernate-core-4.3.7.Final.jar:4.3.7
.Final]
…
_______________________________________________ Apiman-user mailing list
Apiman-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/apiman-user