Re: [hibernate-dev] Is anyone looking at the infinispan test regression?

2011-10-14 Thread Galder Zamarreño
I talked to Strong this morning and created https://hibernate.onjira.com/browse/HHH-6731 I've updated the JIRA to include looking into InvalidatedTransactionalTestCase.testEvict Cheers, On Oct 13, 2011, at 12:43 AM, Sanne Grinovero wrote: > Steve, > as I was saying in chat if this failing tes

[hibernate-dev] remove ID on failed flush

2011-10-14 Thread Marcel Hörr
hey guys, i'm currently facing the following situation: we're using the current stable version of hibernate (3.6.7) as a jpa-vendor with an oracle database. the ids of our entities are generated by a sequence, which works fine. but in the case of a failure during the save action, our entities

Re: [hibernate-dev] remove ID on failed flush

2011-10-14 Thread Emmanuel Bernard
Check out hibernate.use_identifier_rollback in the doc. Also please use the user forum for such questions. This is the hibernate development mailing list. Emmanuel On 14 oct. 2011, at 18:10, Marcel Hörr wrote: > hey guys, > > i'm currently facing the following situation: > > we're using the c

Re: [hibernate-dev] HHH-6726 LONG and LONG RAW column types in Oracle

2011-10-14 Thread Gail Badner
In [1], I am seeing the following type mappings: Column type: LONG -> java.sql.Types.LONGVARCHAR -> java.lang.String Column type: LONGRAW -> java.sql.Types.LONGVARBINARY -> byte[] org.hibernate.type.TextType is consistent with the mapping for LONG. org.hibernate.type.ImageType is consistent with

Re: [hibernate-dev] HHH-6726 LONG and LONG RAW column types in Oracle

2011-10-14 Thread Scott Marlow
How does this impact existing applications? Would they have to convert LONGs to CLOBs (and LONGRAWs to BLOBs) to keep the application working? As far as the advantage of CLOB over TEXT, if you read every character, which one is really faster? I would expect TEXT to be a little faster, since t