JBPAPP-2715 HHH-4114 : Core - ASTParserLoadingTest fails due to missing 'bit_length' function
git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17462 1b8cb986-b30d-0410-93ca-fae66ebed9b2
This commit is contained in:
parent
f5f26545bb
commit
5af53b5d10
|
@ -1941,11 +1941,23 @@ public class ASTParserLoadingTest extends FunctionalTestCase {
|
||||||
|
|
||||||
hql = "from Animal a where mod(16, 4) = 4";
|
hql = "from Animal a where mod(16, 4) = 4";
|
||||||
session.createQuery(hql).list();
|
session.createQuery(hql).list();
|
||||||
|
/**
|
||||||
|
* PostgreSQL >= 8.3.7 typecasts are no longer automatically allowed
|
||||||
|
* <link>http://www.postgresql.org/docs/current/static/release-8-3.html</link>
|
||||||
|
*/
|
||||||
|
if(getDialect() instanceof PostgreSQLDialect){
|
||||||
|
hql = "from Animal a where bit_length(str(a.bodyWeight)) = 24";
|
||||||
|
}else{
|
||||||
|
hql = "from Animal a where bit_length(a.bodyWeight) = 24";
|
||||||
|
}
|
||||||
|
|
||||||
hql = "from Animal a where bit_length(a.bodyWeight) = 24";
|
|
||||||
session.createQuery(hql).list();
|
session.createQuery(hql).list();
|
||||||
|
if(getDialect() instanceof PostgreSQLDialect){
|
||||||
|
hql = "select bit_length(str(a.bodyWeight)) from Animal a";
|
||||||
|
}else{
|
||||||
|
hql = "select bit_length(a.bodyWeight) from Animal a";
|
||||||
|
}
|
||||||
|
|
||||||
hql = "select bit_length(a.bodyWeight) from Animal a";
|
|
||||||
session.createQuery(hql).list();
|
session.createQuery(hql).list();
|
||||||
|
|
||||||
/*hql = "select object(a) from Animal a where CURRENT_DATE = :p1 or CURRENT_TIME = :p2 or CURRENT_TIMESTAMP = :p3";
|
/*hql = "select object(a) from Animal a where CURRENT_DATE = :p1 or CURRENT_TIME = :p2 or CURRENT_TIMESTAMP = :p3";
|
||||||
|
|
Loading…
Reference in New Issue