-->
These old forums are deprecated now and set to read-only. We are waiting for you on our new forums!
More modern, Discourse-based and with GitHub/Google/Twitter authentication built-in.

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 2 posts ] 
Author Message
 Post subject: Inheritance with Lob fields cause issues
PostPosted: Fri Apr 07, 2017 9:47 am 
Newbie

Joined: Tue Apr 04, 2017 11:45 am
Posts: 3
Hello everybody, I'm facing some issues with entities which have Lob fields and which extend a base entity by @Inheritance(strategy=InheritanceType.JOINED)

Let's suppose we have TableA (TABLE_A), TableB (TABLE_B), TableC (TABLE_C) in which I have at least one Lob field.
This three tables extend a BaseEntity (TABLE_BASE) in which I have the @Inheritance(strategy=InheritanceType.JOINED) annotation.

When I try to query from the BaseEntity I obtain the following select:
Code:
select distinct tabl0_.*
from TABLE_BASE tabl0_1_
left outer join TABLE_A tabl0_1_ on tabl0_.ID=tabl0_1_.ID
left outer join TABLE_B tabl0_2_ on tabl0_.ID=tabl0_2_.ID
left outer join TABLE_C tabl0_3_ on tabl0_.ID=tabl0_3_.ID
where tabl0_.A_FIELD='something' )


Since in the TABLE_A and TABLE_B there are Lob fields I have the following error:

Code:
ORA-00932: inconsistent datatypes: expected - got CLOB


I'm using Hibernate 4.3.11.Final, Spring Data JPA 1.11.1.RELEASE and Oracle 11g.

Any ideas?
Many thanks for support.

PS
Forgive possible errors but I can't put the original model due to NDA issues.


Top
 Profile  
 
 Post subject: Re: Inheritance with Lob fields cause issues
PostPosted: Fri Apr 07, 2017 10:50 am 
Hibernate Team
Hibernate Team

Joined: Thu Sep 11, 2014 2:50 am
Posts: 1628
Location: Romania
And A_FIELD is a Clob?


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 2 posts ] 

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.