We are using Envers with both Oracle and MySQL without any problem. We are now trying PostgreSQL but we have the problem that the audit tables are created with a column REVTYPE of type TINYINT.

TINYINT is not supported by PostgreSQL.

Is there a way to change the type of REVTYPE?

Example:

create table AUD_SomeTable (
  dbId bigint not null,
  ...
  REV integer not null,
  REVTYPE tinyint,
  primary key (dbId, REV)
);

EDIT:

Problem solved: I forgot the change the Hibernate dialect.

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

I don't know about about Envers, but you could create a new domain type.

CREATE DOMAIN "tinyint"
  AS smallint;

You can add CONSTRAINS to check for e.g. a postive value.

link|improve this answer
Thanks for the answer: this works but I noticed that I just forgot to change the Hibernate dialect setting ... – Matteo Feb 22 at 14:30
feedback

You should test whether this is really an Envers issue or an Hibernate issue. Try mapping an entity with a property byte type using hibernate only. If it tries to generate a tinyint column it would be a Hibernate issue.

link|improve this answer
It was a configuration issue. Specifying the correct Hibernate dialect solved the problem. – Matteo Feb 22 at 15:03
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.