-->
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.  [ 1 post ] 
Author Message
 Post subject: generate custom sql
PostPosted: Tue Mar 17, 2009 5:06 am 
Newbie

Joined: Mon Jul 14, 2008 11:06 am
Posts: 1
Hi,

in postgresql gibt es einen trick um queries mit langen in-Listen zu beschleunigen:

statt:

(a) select * from foo where id in ('1','2','3')

macht man

(b) select * from foo where id in (values ('1'),('2'),('3'))

Dies ist eine verkürzte schreibweise für

(c) select * from foo where id in (select x from (values ('1','2','3')) as tmp(x))

Die Frage ist jetzt, wie man das hibernate beibringt.

Es einfach in hql zu schreiben, funzt nicht. Bei (b) meint er, dass values eine Funktion wäre und erzeugt dann ungültiges sql ['in (values ('1'), 2, 2)'], (c) aktzeptiert er nicht wegen dem "(" nach dem from.

Gibt es (außer native sql) ne Möglichkeit? Die Idee wäre vielleicht eine art custom dialect. Oder das generierte sql irgendwie nochmal anzupassen. Aber ich finde keinen geeigneten hook.

Irgendwelche Ideen?


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

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.